I have a webservice that gets deployed to the inetpub folder of my site. As long as my assembly deployment target is GlobalAssemblyCache everything is working fine and I can see the WSDL. But if I change the assembly deployment target to WebApplication, I can't see the WSDL anymore and I get a 400 Bad Request error. Is this just not possible or is it just a configuration error?
Tell me more
×
SharePoint Stack Exchange is a question and answer site for
SharePoint enthusiasts. It's 100% free, no registration required.
|
Items in the GAC run with full trust whereas items in the web app /bin/ folder run with the trust level defined in the controlling web.config, which is usually minimal. What is probably happening is that your web service is attempting to access a resource beyond what is allowed which is why it fails in /bin/ but works in the GAC |
|||||
|