Jiří Dudek created PROTON-1112:
----------------------------------

             Summary: Add custom client certificate verification to proton-j
                 Key: PROTON-1112
                 URL: https://issues.apache.org/jira/browse/PROTON-1112
             Project: Qpid Proton
          Issue Type: Improvement
          Components: proton-j
            Reporter: Jiří Dudek


Please add possibility to start listener 
(messenger.subscribe("amqps://~127.0.0.1")) with support for SSL client 
authentication and custom X509TrustManager injection.

The start of such Messenger may look:  
{code}
                        Messenger mng = Messenger.Factory.create();
                        mng.setPrivateKey("serverKey.pem");
                        mng.setCertificate("serverCert.pem");
                        mng.setTrustManagers(myX509TrustManager);
                        mng.setClientAuth(true);
                        mng.start();
                        mng.subscribe("amqps://~127.0.0.1");
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to