Forum Post: Accessing DLL

  • Thread starter Thread starter bart.syryn
  • Start date Start date
Status
Not open for further replies.
B

bart.syryn

Guest
Hi, In our application we have a program that reads info on identity-cards. For years we created a handle like : CREATE "EIDLIBCTRL.EIDlib" chctrlframe NO-ERROR. At that point we could access the dll (like an ocx). The government released new software and the above isn't possible anymore. There's a new DLL and we can't access it like we use to access an OCX or DLL. I think it's possible in OE AppBuilder OE11.3, but I really don't know where to start. Can someone point me into the right direction or where can I find docs that can get me started. They give some examples in C, C# and Java. An example in C# is : using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; using Net.Sf.Pkcs11; using Net.Sf.Pkcs11.Objects; using Net.Sf.Pkcs11.Wrapper; using System.Security.Cryptography.X509Certificates; namespace EidSamples { class ReadData { private Module m = null; private String mFileName; /// /// Default constructor. Will instantiate the beidpkcs11.dll pkcs11 module /// public ReadData() { mFileName = "beidpkcs11.dll"; } public ReadData(String moduleFileName) { mFileName = moduleFileName; }

Continue reading...
 
Status
Not open for further replies.
Back
Top