How to Call ActiveX C# dll from java
843829Oct 26 2009 — edited Oct 26 2009Hello Forum....
I am struggling with a .dll which is not wrote in manged code. I am trying to interface one Contactless RFID reader with its dll provided. The Documentation describes its an activeX dll. I tried
lib = NativeLibrary.getInstance("ContactlessReader"); //ok
fun = lib.getFunction("Connect");
But it doesnt helped me. Throws Function Not Found Exception..
I think the dll uses classes and I need to call
ActiveXContactless.Connect();
here ActiveXContactless is a namespace in the dll.
How i get access to the Connect Function(Connect()) in the ActiveXContactless Class... ?
Help me to solve this problem..
Regards
Anish