Click here to Skip to main content
16,020,741 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have Nitgen fingerprint machine. It's working properly on local machine. but on live website it give error like

Could not load file or assembly 'Interop.NBioBSPCOMLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=bf76fe6bc0d3af33' or one of its dependencies. The system cannot find the file specified.

C#
BioBSPCOMM.BioBSP m_NBioAPI = new BioBSP();


Above line it give me error.

Thanks in advance...
Posted
Updated 13-Jul-15 1:48am
v2
Comments
[no name] 13-Jul-15 4:35am    
The library needs to be installed on the server.
c.chirag 14-Jul-15 2:06am    
Means setup file need to install on the server or i just copy pest .dll file on the server.
[no name] 14-Jul-15 4:08am    
Whatever the documentation says is necessary to install it.

1 solution

BioBSP defined in a library (the one in the error message) that not found on the hosting machine...
You should:
Install it from a package came from the vendor
...or...
Include it in your package when publishing your website to the hosting machine...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900