tags:

views:

40

answers:

1

In PHP, I use CURL to send a .PEM formatted certificate to a remote host. For example:

curl_setopt($curl, CURLOPT_SSLCERT, '/path/to/file.pem');

How can I do this in Java?

A: 

Take a look at the answers to this question.

unhillbilly