Mendix SDK for Import web service/XML file

0
Any Mendix experts can tell me if SDK has the API similar to Studio Pro "Import web service/XML file" function in Domain Model?  Choose a XML Schema, generate a domain model. Thanks.
asked
1 answers
1

In Mendix studio Pro this functionality is not available in the domain model. Generating Entities usually has to be done manually unless they are generated using a REST/Web service.

You can however do this with the Platform SDK as the documentation in the links below speaks:
“Write” to your app model (for example, create a new entity in your domain model, add an activity to an existing microflow, even generate a whole new Mendix app based on a legacy code base)

This does require the necessary TypeScript & JavaScript knowledge, by the way.

Here is documentation that can help you with this:

https://docs.mendix.com/apidocs-mxsdk/mxsdk/sdk-intro

https://docs.mendix.com/releasenotes/sdk/model-sdk-4

https://docs.mendix.com/apidocs-mxsdk/mxsdk/ 

answered