
Dear Experts,
I am trying to integrate between AX and dotnet. I have created AX web service(inbound process) through AIF and hosted it in IIS. I got a wsdl url which is working fine in both( One in which AX is running and other machine where .Net project is running) systems . In .Net, I have created an Empty web application with web service and added service reference with the "wsdl"Link which was generated from AX. In .Net when I am accessing their service method and passing the parameter value , it is throwing Below Error:
System.ServiceModel.Security.MessageSecurityException: The HTTP request is unauthorized with client authentication scheme 'Negotiate'. The authentication header received from the server was 'Negotiate,NTLM'
It would be great if i get guideline to solve the client authentication problem asap.
*This post is locked for comments
I have the same question (0)The message means that your application isn't configured for, or can't use NTLM authentication for some reason. Review the client WCF configuration, e.g. that clientCredentialType="Windows", and if it doesn't help, look for additional advices on internet. This is indeed about WCF and not anything specific to Dynamics AX.