Reputation: 32490
I am using netTcpBinding to try and access a WCF service.
I am attempting to connect via clientCredentialType windows.
But when the web application attempts to hit the service I am getting an authentication error. Is it possible to use clientCredentialType="Windows" to access a machine hosting a service on another domain?
Upvotes: 1
Views: 471
Reputation: 364259
No it is not possible because if there is no trust between domains so the machine hosting the service cannot validate credentials of the account running the client on another machine.
Upvotes: 2