Hi I'm trying to deploy a project with a web service endpoint running as https. Everything deploys ok but I'm getting an error browsing the service over https.
I've got this in the web.config for the service.
<system.webServer>
If I browse the service I get an error about the config section being locked by the parent. In other .NET projects I've done this...
%windir%\System32\inetsrv\appcmd.exe unlock config /section:system.webServer/security/access
How would this be done with BTDF?
Thanks
Andy
I've got this in the web.config for the service.
<system.webServer>
<security>
<access sslFlags="Ssl" />
</security>
</system.webServer>If I browse the service I get an error about the config section being locked by the parent. In other .NET projects I've done this...
%windir%\System32\inetsrv\appcmd.exe unlock config /section:system.webServer/security/access
How would this be done with BTDF?
Thanks
Andy