From 9113054ad3ef3a35c18bd601bf61ea4f04ae60e0 Mon Sep 17 00:00:00 2001 From: Rajith Muditha Attapattu Date: Thu, 23 Oct 2008 19:32:02 +0000 Subject: This is for QPID-1296 added a boolean to the connect method to indicate whether an SSL connection should be created. currently there seems to be two issues. 1. The shutdownInput method used in IoReceiver is not supported by the SSLSocket implementation. 2. I haven't able to get client side authentication working. For item 1 we may need to use nio classes to get around the issue. For item 2 I am yet to figure out the correct config options to get client side auth working. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@707453 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/qpid/management/configuration/QpidDatasource.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'java/management') diff --git a/java/management/client/src/main/java/org/apache/qpid/management/configuration/QpidDatasource.java b/java/management/client/src/main/java/org/apache/qpid/management/configuration/QpidDatasource.java index 551f59d6b6..1a51085ad3 100644 --- a/java/management/client/src/main/java/org/apache/qpid/management/configuration/QpidDatasource.java +++ b/java/management/client/src/main/java/org/apache/qpid/management/configuration/QpidDatasource.java @@ -137,7 +137,8 @@ public final class QpidDatasource _connectionData.getPort(), _connectionData.getVirtualHost(), _connectionData.getUsername(), - _connectionData.getPassword()); + _connectionData.getPassword(), + false); return connection; } -- cgit v1.2.1