Is there a way to extract information about which client certificate was used in my web service method when used <security mode="Transport>? I sifted through OperationContext.Current, but could not find anything obvious.
My server configuration is as follows:
<basicHttpBinding>
<binding name="SecuredBasicBindingCert">
<security mode="Transport">
<message clientCredentialType="Certificate" />
</security>
</binding>
</basicHttpBinding>
I work with a third-party pub / subsystem, which unfortunately uses DataPower for authentication. It looks like if I use WCF with this configuration, then I can’t get the caller information (since no credentials have been sent).
Somehow I need to be able to find out who is calling my service without changing my configuration, or ask them to change their payload.