vote up 0 vote down star

So I have a WCF service where I have various parts of the service contract with a ProtectionLevel of Sign. I set the credentials on the client side by choosing a certificate from the certificate store. This is fine.

However ....

  1. Does this client certificate need to be in the 3rd party certificate store on the server for this to work?
  2. If this is the case how can I configure a service which accepts any client certificate?
  3. And finally how do I access the signing certificate within the implementation of the operations which require signed messages? Just the signing certificate subject name would do fine!

Thanks

flag

why on earth would you ever want to move away from the default "encrypt+sign" ?? – marc_s Nov 2 at 6:13
Demo purposes. Plus for a lot of messages you don't need the overhead of encryption, just a signature. Got it sorted anyway, will self answer. – blowdart Nov 2 at 16:09

1 Answer

vote up 0 vote down check

Ah the joy of self answering.

So

  1. "It depends". If you have ChainOrPeer validation then both the chain or the presence of the certificate in the trusted people store results in success. Only validating on chain obviously checks the chain, setting Peer validation uses the store, and None lets everything through.

  2. Set the validation mode to none

  3. The SecurityContext for the request contains an X509CertificateClaimSet which in turn exposes the certificate itself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.