0

I am working with Jacob jar for some of the operation involves bridging to COM objects. In windows I have loaded Jacob.dll explicitly, I have done a little search over internet to find the supported .so file for Linux, but I did not found the file.

Could any one help me with this question, if it is possible to use Jacob jar support in unix/Linux operating system or not?

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
Chandan D N
  • 335
  • 1
  • 4
  • 16

2 Answers2

1

It does not look like JACOB would support Linux, although there were some discussions on using Wine for that.

lexicore
  • 42,748
  • 17
  • 132
  • 221
1

What do you want to use jacob on linux for? Jacob is a Java-COM bridge. COM stands for 'Component Object Model' and is a proprietary binary-interface standard for software components introduced by Microsoft in 1993. There is no COM on linux. Some discussion about it here. You maybe want to access an *.so file which can be done using JNA which is available for linux and lots of other platforms...

Lonzak
  • 9,334
  • 5
  • 57
  • 88