Hi,
I was gettng this error when trying to call the crm’s webservice from my asp.net page
The resolution for this is putting the following code in the web.conig
i.e. enable impersonation and deny anonymous access
<authentication mode=”Windows” />
<identity impersonate=”true”/>
<authorization>
<!–Deny all unauthenticated users–>
<deny users=”?”/>
</authorization>
Bye

Like
Report
*This post is locked for comments