views:

106

answers:

2

Hi,

I am developing a jsp application. I am forced to load a COM object. Can such a thing can be done? if yes, how??

Many thanks, Ofer

+5  A: 

It is possible using a COM bridge like JACOB.

JACOB is a JAVA-COM Bridge that allows you to call COM Automation components from Java. It uses JNI to make native calls into the COM and Win32 libraries.

Gulzar
+2  A: 

If you need to use the COM object within the Java side of things (i.e. server), you will need something like J-Integra or JNI Wrapper. There are several open-source projects that can do similar things.

If you need the use a COM object on the client-side (i.e. browser), then it's no different than how you would do it using plain-ole HTML.

James Schek

related questions