Yes , you can export the station/workspace configuration from Mendix Workstation Management and use that file as the source for your “Stations & Devices” list in your app. Workstation Management lets you export one or more stations(including devices) to a JSON file, which you can then store in your app and parse as needed for reporting or UI.
Here’s the relevant documentation on this feature:
Exporting station/workspace configuration (JSON) -> This page shows how to export/import stations and devices:
https://docs.mendix.com/mendix-workstation/import-export/
So the typical pattern is:
This gives you the full list of configuration without needing the Workstation Client installed or connected devices during the export.
hi,
Unfortunately, there is no public REST API or built-in connector that lets you fetch all Stations and their Devices directly from Workstation Management into your Mendix app without using the Workstation client.
Mendix Workstation Management is a centralized management console for:
The Workstation Management metadata (stations, devices, workspace hierarchy) lives in the Workstation Management app’s own database, and the only supported ways to interact with it are:
Mendix provides the Workstation Connector module from the Marketplace for apps that actually connect to devices on a local station. When that connector is configured:
GetStation – retrieves the station config for the connected clientSubscribeToMessages, SendMessage – interact with devices via the local client socketWithout installing and running the Workstation Client on the same machine as the devices:
This means you cannot:
If your requirement is to show a central list of stations and devices in your app without requiring local clients, you can:
Export station/device configurations as JSON from Workstation Management and import them into your Mendix domain via:
OR
Build your own API:
Hi Sanjay,
The answers provided are accurate and reflect the current status. As mentioned, the workaround would be to export the current configuration and upload it to your Mendix application.
I would be interested to know what exactly you want to implement and what information you would need from the workstation management to do so.
If this is information that you would rather not share publicly, you are welcome to send me a PM in the Mendix Community Slack.
Best regards
Lino
(TPM Workstation)