I'm trying to connect to a web service hosted by a third party using mutual TLS. Here is the simple test case I am trying:
I am able to connect to the same web service with the same parameters for key, cert, etc using curl:
The go test case fails with an EOF error. I've traced the error to this line in the tls client handshake:
Unfortunately the folks responsible for this web service don't seem to know much about it - about all I know is that its running Jetty.
Any insight into why it would work with curl, but not go?
Thanks!
Rob.