Granting Unauthenticated Access

Top  Previous  Next

To configure a Web3 instance for unauthenticated access, it is necessary to modify the WCF service configuration in the web.config file. The steps below assume that you have an existing Web.config file that specifies the use of Windows authentication (this is the default configuration provided with a Web3 server instance).

 

1.Comment out or delete the element:
<authentication mode="Windows"/>
2.Locate the httpTransport element under system.ServiceModel/bindings and change it to:
<httpTransport authenticationScheme="Anonymous" manualAddressing="true" maxReceivedMessageSize="2147483647"/>