We have a web service built in PHP and running on Apache that requires client certificate based authentication. The client which is consuming this service is using some combination of .Net technologies.

We've run into a problem where if our side complains about a request (for instance, throwing an HTTP 400 error) the next request from them will fail.

What they're seeing:

System.ServiceModel.Security.SecurityNegotiationException: Could not establish secure channel for SSL/TLS with authority 'example.com'.  ---> System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.
    at System.Net.HttpWebRequest.GetResponse()
    at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan timeout)
    --- End of inner exception stack trace ---
...

What we see in our logs:

[Thu Nov 10 21:51:50 2011] [error] [client 0.0.0.0] insecure SSL re-negotiation required, but a pipelined request is present; keepalive disabled
[Thu Nov 10 21:51:50 2011] [error] [client 0.0.0.0] Re-negotiation handshake failed: Not accepted by client!?

Any insight into how we can get past this would be much appreciated.

link|improve this question

76% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.