Can u pls tellme how to call a COM Object in a JAVA program. If uhave any sample program or web. site ref.
There is a project called JACOB which allows you to call COM fromJava. The main website is http://danadler.com/jacob/ . There isn'tmuch documentation on it just some examples from what I've found.There's a yahoo group called jacob-project that may be helpful. I'veused Jacob to do some pretty neat things in MS Word from Java, it's apretty nice tool.
Myself, I would use JNI, and write my own C++ and Makefiles andeverything, and call COM from there, but there's also:http://www.jintegra.comwhich leads tohttp://www.intrinsyc.com/products/j-integra/Another option is simply not to call com at all, and implement it allin Java.