Can someone point me in the right direction, how can I fix this error?
System.Web.Services.Protocols.SoapException: Server was unable to process request.
---> System.Security.SecurityException: Request for principal permission failed.
at System.Security.Permissions.PrincipalPermission.ThrowSecurityException()
at System.Security.Permissions.PrincipalPermission.Demand()
at System.Security.PermissionSet.DemandNonCAS()
at LiveDocx.MailMerge.SetLocalTemplate(String template, String format)
I installed this software that my company purchased from LiveDocx. Thus, I have no way to change the code or even read the code. I installed everything in accordance with their documentation, and the site confirmed that it works. I can only change settings in IIS, folder permissions and Web.config. Our server, their software.
Now I have a problem with you logging in to the web service. Before you think that this is a soap client, I confirmed that it works by calling vendor servers.
Locally, I can successfully call the web service during login, and it works fine. However, when I make a subsequent call, I get Request for principal permission failed.
At the request of their technical support, I added <trust level="Full" />to web.config, but this did not work. Now they have stopped responding to our letters.
I am not an ASP.NET developer, so my knowledge is limited by the server settings. Can someone point me in the right direction, why this error occurs, and a few places to look to solve this problem?
source
share