How to download a COM project from a JSP page?

I am developing a JSP application and I have to load a COM object. Can this be done?

If so, how?

+4
source share
2 answers

It is possible to use a COM bridge, for example, JACOB .

JACOB is a JAVA-COM bridge that allows you to invoke COM Automation components from Java. It uses JNI to create its own calls in the COM and Win32 libraries.

+5
source

If you need to use a COM object on the Java side (for example, a server), you will need something like J-Integra or JNI Wrapper . There are several open source projects that can perform similar actions.

If you need to use a COM object on the client side (i.e. the browser), then it is no different from how you do it using simple HTML code.

+2
source

All Articles