A partially trusted caller can't call into a strongly named assembly. I'm
wondering if your calling code is not FullyTrusted? You can add the AllowPartiallyTrustedCallers
attribute to your assembly to your strongly named assembly, but this should
only be done after you've done a security code review and checked your code
for possible vulnrabilities. Here's the syntax:
[assembly: AllowPartiallyTrustedCallers]
-Brock
DevelopMentor
http://staff.develop.com/ballen
> I experienced the same problem. Getting a FileLoadException for my
> ASP.NET apps when using strongly named external dll.
>
> Resolved my problem by removing the strong name.
>