I'm trying to apply a client certificate to a WCF REST Service. I have found some details on applying a client certificate that has the following:
<bindings>
<wsHttpBinding>
<binding name="wsHttpEndpointBinding">
<security>
<message clientCredentialType="Certificate" />
</security>
</binding>
</wsHttpBinding>
</bindings>
In which case there seems to be no problems. I am however using webHttpBinding and I get an error stating that message
is an invalid child of the security
node.
Am I going about setting up client certificates improperly? Would anyone be able to point me in the correct direction.