I am trying to access my WCF service on a server from my client console application for testing. I am getting the following error:
The caller was no
I got it.
If you want to use wshttpbinding, u need to add windows credentials as below.
svc.ClientCredentials.Windows.ClientCredential.UserName = "abc"; svc.ClientCredentials.Windows.ClientCredential.Password = "xxx";
thanks