Search Results

0
votes

WCF self-hosted service with transport security (Authentication failed because the remote party has closed the transport stream.)

Certificates can be a pain in the ass some times to get working. First thing you should always do with WCF is turn on tracing: …
3
votes

WCF transport security with no authentication

You can have https communication without authentication, but you cannot have https communication without certificates, since https encryption uses certificates. There are a few things to ch …
1
vote

Passing Windows Token to WCF then from WCF to another server in the AD domain

This is known as delegation. Set the allowed impersonation level in the client configuration to "Delegation" and disable NTLM authentication on the server side. I have a post with a more in depth d …
0
votes

Passing the original caller in WCF

You could use Delegation instead: http://www.iserviceoriented.com/blog/post/Delegation+-+WC …