I just got this error from GP web services when I tried to change the binding from wsHttpBinding to webHttpBinding. I can not find any documentation on this nor on how to change the binding. How do I fix this error? Manual addressing is enabled on this factory, so all messages sent must be pre-addressed.
*This post is locked for comments
I have the same question (0)webHttpBinding is for REST API. wsGttpBinding is for WCF API.
wsHttpBinding will work remotely but you have to set the credentials:
wsDynamicsGP.ClientCredentials.Windows.ClientCredential.Domain = "mydomain";
wsDynamicsGP.ClientCredentials.Windows.ClientCredential.UserName = "myuser";
wsDynamicsGP.ClientCredentials.Windows.ClientCredential.Password = "mypass";