What tools are available for creating a Java process in COM servers?

What tools are available to create a process in Java in COM servers?

+3
source share
4 answers

J-Integra is the most complete, complete solution you'll probably find for sharing COM and Java. The software was used by many commercial products, large and small, to integrate COM and Java (in both directions).

+1
source

jacob - * - x86.dll and the followed jacob.jar

Used it successfully to connect to TestDirector (which uses DCOM). It's a bit tricky with memory management, but even the .NET guys calling COM are having problems. link text

+1

Another alternative is JNI Wrapper / ComfyJ - it allows you to either generate Java proxy classes or use IDispatch. You can also capture and broadcast events (IConnectionPoint) and implement COM servers.

0
source

Any software used to access COM from Java (or another platform) is called a "COM bridge."

The j-Interop project on sourceforge might be worth checking out.

0
source

Source: https://habr.com/ru/post/1698116/


All Articles