Question from Web Hosting Provider:
How do I install ChilkatDotNet2.dll on the server?
Answer:
I provided a simple .zip you can download that contains only the ChilkatDotNet2.dll:
http://www.chilkatsoft.com/download/ChilkatDotNet2.zip
It’s a .NET assembly, so there’s nothing you really need to do to install it. The ChilkatDotNet2.dll will be copied to a web app’s bin directory by the website owner. As long as ASP.NET grants permission to load and use it, everything is fine. There are (at least) two ways to do it: 1) run ASP.NET in Full Trust mode. In this case, any .NET assembly is granted permission to load. Or… 2) your ASP.NET server runs Medium Trust, but you grant full trust to DLLs matching a StrongNameMembershipCondition (as shown in the blog post at http://www.chilkatsoft.com/p/p_116.asp). As long as the DLL is strong-named and the public-key matches that in the StrongNameMembershipCondition, the DLL is granted full trust. The only way a DLL can match and verify is if the strong-name was generated using a private key only held by the DLL’s publisher.