Import of codes for native codebases of Java

0
Does Mendix platforms allows import of codes for native codebases of Java/PHP etc. Typical interoperability of the codebase?
asked
2 answers
1

If you want to call functionality from a different codebase from your Mendix application the usual way to do this would be for your other codebase to expose a REST or SOAP interface, and the Mendix application to call that to pass data between the two systems.

I hope this helps.

answered
1

While I generally agree with Robert, I think it’s important to note that Mendix is extensible via Java, and you can import Java libraries (JAR files) and use them in your Java action code:

 

https://docs.mendix.com/howto/logic-business-rules/extending-your-application-with-custom-java/ 

answered