File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
test/src/com/rabbitmq/client/test/ssl Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -54,23 +54,19 @@ public void openConnection()
5454 tmf .init (tks );
5555
5656 String p12Path = System .getProperty ("p12.path" );
57- System .out .println ("p12.path = " + p12Path );
5857 assertNotNull (p12Path );
5958 String p12Passwd = System .getProperty ("p12.passwd" );
60- System .out .println ("p12.passwd = " + p12Passwd );
6159 assertNotNull (p12Passwd );
6260 KeyStore ks = KeyStore .getInstance ("PKCS12" );
6361 char [] p12Password = p12Passwd .toCharArray ();
6462 ks .load (new FileInputStream (p12Path ), p12Password );
6563
66- System .out .println ("got here" );
6764 KeyManagerFactory kmf = KeyManagerFactory .getInstance ("SunX509" );
6865 kmf .init (ks , p12Password );
6966
7067 SSLContext c = SSLContext .getInstance ("SSLv3" );
7168 c .init (kmf .getKeyManagers (), tmf .getTrustManagers (), null );
7269
73- System .out .println ("starting up connection" );
7470 connectionFactory = new ConnectionFactory ();
7571 connectionFactory .useSslProtocol (c );
7672 } catch (NoSuchAlgorithmException ex ) {
You can’t perform that action at this time.
0 commit comments