From 351decc105fed333d48f28cdd5fe9d93d4b89cea Mon Sep 17 00:00:00 2001 From: "Adrian T. Co" Date: Sat, 18 Mar 2006 00:25:27 +0000 Subject: [PATCH] - Corrected the path to the keystores. - Enabled SslTransportBrokerTest git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@386772 13f79535-47bb-0310-9956-ffa450edef68 --- activemq-optional/project.xml | 3 --- .../apache/activemq/transport/ssl/SslTransportBrokerTest.java | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/activemq-optional/project.xml b/activemq-optional/project.xml index 53530fa221..4bbc1fae36 100755 --- a/activemq-optional/project.xml +++ b/activemq-optional/project.xml @@ -196,9 +196,6 @@ **/HttpsTransportBrokerTest.* **/HttpTransportBrokerTest.* - - **/SslTransportBrokerTest.* - diff --git a/activemq-optional/src/test/java/org/apache/activemq/transport/ssl/SslTransportBrokerTest.java b/activemq-optional/src/test/java/org/apache/activemq/transport/ssl/SslTransportBrokerTest.java index b468a8b4be..089b2b2efb 100755 --- a/activemq-optional/src/test/java/org/apache/activemq/transport/ssl/SslTransportBrokerTest.java +++ b/activemq-optional/src/test/java/org/apache/activemq/transport/ssl/SslTransportBrokerTest.java @@ -28,10 +28,10 @@ public class SslTransportBrokerTest extends TransportBrokerTestSupport { } protected void setUp() throws Exception { - System.setProperty("javax.net.ssl.trustStore", "src/test/client.keystore"); + System.setProperty("javax.net.ssl.trustStore", "src/test/resources/client.keystore"); System.setProperty("javax.net.ssl.trustStorePassword", "password"); System.setProperty("javax.net.ssl.trustStoreType", "jks"); - System.setProperty("javax.net.ssl.keyStore", "src/test/server.keystore"); + System.setProperty("javax.net.ssl.keyStore", "src/test/resources/server.keystore"); System.setProperty("javax.net.ssl.keyStorePassword", "password"); System.setProperty("javax.net.ssl.keyStoreType", "jks"); //System.setProperty("javax.net.debug", "ssl,handshake,data,trustmanager");