I was able to execute the sample visual cobol WEB WCF service and validate its results.
I am trying to consume a C# WCF service hosted in a different domain from a winform test client managed program developed using VC 2.3.
I get error message "The server has rejected the client credentials".
Here's my test client app config file details...
<client>
<endpoint address="net.tcp://servername.domain:port number/path/TestService.svc" binding="netTcpBinding" bindingConfiguration="TestService" contract="ServiceReference.ITestService" name="TestService">
<identity>
<userPrincipalName value="service account@another domain" />
</identity>
</endpoint>
</client>
What am i missing ?
#WCF
#VisualCobolManaged



