Hi,
I configure the dynamic GP 2010 webservice , below mention is the app.config file
<?xml version="1.0"?>
<configuration>
<configSections>
</configSections>
<startup><supportedRuntime version="v2.0.50727"/></startup><system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="GPWebService" />
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://abc:48620/Dynamics/GPService/GPService"
binding="wsHttpBinding" bindingConfiguration="GPWebService"
contract="GPWS2010.DynamicsGP" name="GPWebService">
<identity>
<userPrincipalName value="administrator@abc.com" />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>
I have added webservice url ,userPrincipalName and company ID as (1).
when i run the program it prompt me an error mention below ,
"An exception of type 'System.ServiceModel.Security.SecurityNegotiationException' occurred in mscorlib.dll but was not handled in user code
Additional information: The caller was not authenticated by the service. "
Please guide to get rid of this issue.
Thanks,
Ajay
*This post is locked for comments