Hello,
I'm using Microsoft.Web.Services2; for a c# (2003) infopath (2003) project, and when i'm calling the methods from webservices2 i get the
System.Security.SecurityException
That assembly does not allow partially trusted callers. exception
I added [assembly: AllowPartiallyTrustedCallers] to AssemblyInfos.cs, also added
[PermissionSet(SecurityAction.Assert, Name="FullTrust")]
[PermissionSet(SecurityAction.Demand, Name="FullTrust")]
before the method that uses the webservices methods, but still i got the exception.
Anyone knows the solution of this problem?
Thanks