I'm getting different errors with a WCF service. This service has worked fine in all of our test environments so far, until now. We normally having it running under IIS 6 on Windows Server 2003. I had it running under a Windows XP Pro VM that was connected to our company's domain. Our IT guy removed the VM from the company domain just recently.
Now I'm getting errors like these:
An existing connection was forcibly closed by the remote host.
The remote server returned an error: (403) Forbidden.
The HTTP request was forbidden with client authentication scheme 'Anonymous'.
IIS is configured to allow Anonymous access. The IIS user also has permission to view/execute in the service folder.
The service works fine for some calls but not for others. The application calls the service when loading, but then later on in a separate call it does this.
The service is using wsHttpBinding:
<wsHttpBinding>
<binding name="wsHttpBindingSettings" maxReceivedMessageSize="2147483647">
<security mode="None">
<transport clientCredentialType="None" />
<message establishSecurityContext="false" />
</security>
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</binding>
</wsHttpBinding>