0

I want to create WCF service and client. I want to add 2 way SSL between these 2 services.

I was wondering, if there is a way that these services will cache the negotiation data of the first connection, and use it in the following connections in order to reduce the latency caused by the SSL handshake.

Can someone help?

Thanks.

Matan
  • 680
  • 2
  • 14
  • 24

1 Answers1

0

SSL already does session sharing. You don't have to do anything to make it happen.

user207421
  • 305,947
  • 44
  • 307
  • 483
  • Is there a way to get this cache? I mean, as a client, I want to get the data (and to use it as a token). – Matan Jun 19 '12 at 07:33
  • @Mattan I don't know the C# API but you can generally get hold of the session ID somehow via whatever API there is. It's just a byte sequence. – user207421 Jun 19 '12 at 10:33