Can anyone tell me how to create a custom binding that reproduces the exact same behavior from the following in WCF?
<netTcpBinding>
<binding name="SecureTcp" >
<security mode="TransportWithMessageCredential">
<transport clientCredentialType="Certificate" />
<message clientCredentialType="UserName" />
</security>
</binding>
</netTcpBinding>
All of the googled solutions that I've found don't seem to be working for one reason or another. I've found a lot of solutions regarding httpTransport, but very few regarding nettcptransport.
The above configuration is currently working, but I need to modify the maxClockSkew, and the only way to accomplish this is with a custom binding.
Thanks in advance, Brian