I get this error when trying to access our servers. I've tried even registering the dll (MP_Data.dll) in the bin dir, but it fails to register so I'm stumped at what I need to do.
Regards,
P
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I've copied the bin directory to root and have made sure the assemblies section is in our web.config and it's produced same error. i've even tried copying the file to %windir%\Microsoft.NET\Framework\(version)\ per Microsofts alternate install location for assemblies plus the web.config from the app directory to root and still received same error.
Regards,
P
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I get this error when trying to access our servers. I've tried even registering the dll (MP_Data.dll) in the bin dir, but it fails to register so I'm stumped at what I need to do.
Regards,
P
The "web.config" file and the "bin" directory (with MLP_data.dll) need to be in the root of the webserver.
In the web config file there is the section:
<compilation
defaultLanguage="vb"
debug="true"
>
<assemblies>
<add assembly="*"/>
</assemblies>
</compilation>
The statement <add assembly="*"/> tells it to include all of the libraries in the bin directory with the installation.
I've copied the bin directory to root and have made sure the assemblies section is in our web.config and it's produced same error. i've even tried copying the file to %windir%\Microsoft.NET\Framework\(version)\ per Microsofts alternate install location for assemblies plus the web.config from the app directory to root and still received same error.
Regards,
P