What is the best way to use a dll file as part of a mendix Application

4
What is the best way to use a dll file as part of a mendix Application
asked
2 answers
4

A DLL contains native code for Windows machines, so you have to run on a Windows server. To use code from the DLL you will need to use Java Native Interface either directly or through a library. See this stackoverflow question for more information:

http://stackoverflow.com/questions/771145/how-do-i-call-dll-inside-java

It also depends whether the DLL contains compiled C, C++ or .NET code.

Maybe someone else has written a Java wrapper for the DLL already? That would be the easiest way to use it.

answered
-2

Write a command line application. The JVM does not support interaction with dll's, which are a windows specific thing.

answered