How do you start a mendix application outside the modeller

4
Can I issue a command to fire up the XAS from the command line?
asked
2 answers
5

There's also a "mx.cmd" batch file in your project root which does approximately the same:

@java -Djava.library.path=WEB-INF/lib -jar WEB-INF/mx.jar
answered
3

Nagivate to the WEB-INF/lib folder from command line. Now you can use the following command to start the XAS:

java -jar mx.jar

Good luck!

answered