<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<body link="#355491" alink="#4262a1" vlink="#355491" style="background: #e2e2e2; margin: 0; padding: 20px;">

<div>
        <table cellpadding="0" bgcolor="#FFFFFF" border="0" cellspacing="0" style="border: 1px solid #dadada; margin-bottom: 30px; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                <tbody>
                        <tr>

                                <td>

                                        <table border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" style="border: solid 2px #ccc; background: #dadada; width: 100%; -moz-border-radius: 6px; -webkit-border-radius: 6px;">
                                                <tbody>
                                                        <tr>
                                                                <td bgcolor="#000000" valign="middle" height="58px" style="border-bottom: 1px solid #ccc; padding: 20px; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px;">
                                                                        <h1 style="color: #333333; font: bold 22px Arial, Helvetica, sans-serif; margin: 0; display: block !important;">
                                                                        <!-- To have a header image/logo replace the name below with your img tag -->
                                                                        <!-- Email clients will render the images when the message is read so any image -->
                                                                        <!-- must be made available on a public server, so that all recipients can load the image. -->
                                                                        <a href="https://community.jboss.org/index.jspa" style="text-decoration: none; color: #E1E1E1">JBoss Community</a></h1>
                                                                </td>

                                                        </tr>
                                                        <tr>
                                                                <td bgcolor="#FFFFFF" style="font: normal 12px Arial, Helvetica, sans-serif; color:#333333; padding: 20px;  -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px;"><h3 style="margin: 10px 0 5px; font-size: 17px; font-weight: normal;">
    SSL Enabled HornetQ Connector wont connect.
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/zeebot">Zahid Saleem</a> in <i>JBoss Messaging</i> - <a href="https://community.jboss.org/message/824600#824600">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>All i am currently struggling to connect to SSL enabled JMS Queue using HornetQConnectionFactory in JBoss 6.1.0-Final</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>My Server is basically running the ssl-enabled hornetQ configuration and using the keys provided - the server loads up successfully and the listening on port 5500</p><p>The Client is a pragmatic HornetQ Connector that should hopefully connect to the Server the following code illustrates how i create the connection</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><pre class="jive-pre"><code class="jive-code jive-java">&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160; Map&lt;String, Object&gt; connParams = <font color="navy"><b>new</b></font> HashMap&lt;String, Object&gt;();
&#160;&#160;&#160;&#160;&#160;&#160;&#160; connParams.put(org.hornetq.core.remoting.impl.netty.TransportConstants.PORT_PROP_NAME, port);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; connParams.put(org.hornetq.core.remoting.impl.netty.TransportConstants.HOST_PROP_NAME, host);
&#160;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; connParams.put(org.hornetq.core.remoting.impl.netty.TransportConstants.SSL_ENABLED_PROP_NAME, <font color="navy"><b>true</b></font>);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; connParams.put(TransportConstants.KEYSTORE_PASSWORD_PROP_NAME, <font color="red">"hornetqexample"</font>);
&#160;&#160;&#160;&#160;&#160;&#160;&#160; connParams.put(TransportConstants.KEYSTORE_PATH_PROP_NAME, <font color="red">"/opt/cert/hornetq.example.keystore"</font>);
&#160;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; TransportConfiguration transConfig =
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>new</b></font> TransportConfiguration(NettyConnectorFactory.class.getName(), connParams);
&#160;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; hcf = <font color="navy"><b>new</b></font> HornetQJMSConnectionFactory(false, transConfig);
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>try</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Queue queue;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; queue = <font color="navy"><b>new</b></font> HornetQQueue(queueName);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>if</b></font> (username != <font color="navy"><b>null</b></font> &amp;&amp; password != <font color="navy"><b>null</b></font>) <font color="navy">{</font>
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection = hcf.createConnection(username, password);
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>else</b></font> <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection = hcf.createConnection();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; producer = session.createProducer(queue);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; connection.start();
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; connected = <font color="navy"><b>true</b></font>;
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font> <font color="navy"><b>catch</b></font> (JMSException ex) <font color="navy">{</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Throw an exception that can be handled by the caller</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; logger.error(<font color="red">"Problem creating JMS connection"</font>, es);
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="darkgreen">// Disconnect so that we clean up any partially created components</font>
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; disconnect();
&#160;
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy"><b>throw</b></font> commsEx;
&#160;&#160;&#160;&#160;&#160;&#160;&#160; <font color="navy">}</font>
&#160;
The above works when SSL is disabled - however when it SSL is enabled the server side errors with
&#160;
17:07:41,024 INFO&#160; [org.jboss.bootstrap.impl.base.server.AbstractServer] JBossAS [6.1.0.Final <font color="red">"Neo"</font>] Started in 35s:923ms
17:12:51,067 ERROR [org.jboss.xnio.channel-listener] A channel event listener threw an exception: java.lang.IllegalArgumentException
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at java.nio.ByteBuffer.allocate(ByteBuffer.java:311) [:1.6.0_45]
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at org.jboss.xnio.channels.MessageStreamChannelListener.handleEvent(org.jboss.xnio.channels.MessageStreamChannelListener:108)
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at org.jboss.xnio.channels.MessageStreamChannelListener.handleEvent(org.jboss.xnio.channels.MessageStreamChannelListener:1) [
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at org.jboss.xnio.IoUtils.invokeChannelListener(org.jboss.xnio.IoUtils:536) [:6.1.0.Final]
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at org.jboss.xnio.nio.NioTcpChannel$ReadHandler.run(NioTcpChannel.java:389) [:6.1.0.Final]
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at org.jboss.xnio.IoUtils$2.execute(org.jboss.xnio.IoUtils:71) [:6.1.0.Final]
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at org.jboss.xnio.nio.NioSelectorRunnable.run(NioSelectorRunnable.java:115) [:6.1.0.Final]
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at java.lang.Thread.run(Thread.java:662) [:1.6.0_45]
&#160;&#160;&#160;&#160;&#160;&#160;&#160; at org.jboss.threads.JBossThread.run(JBossThread.java:122) [:2.0.0.CR7]
&#160;
&#160;
LIke i mentioned the Server side hornetQ config is almost identicle to the ssl-enabled example available in hornetQ. 
There are Netty SSL Conenctors and Acceptors are configured in the hornetq-configuration.xml the exampleQueue is created on the server side.&#160; So am unsure why i cant connect 
successfully from the client.&#160; However the example does use JNDI lookup where as I am create a HornetQConnector to connect over SSL i wouldnt have thought that will be an issue.
&#160;
Any help on the above would be greatly appreciated.
&#160;
&#160;
&#160;
&#160;
</code></pre></div>

<div style="background-color: #f4f4f4; padding: 10px; margin-top: 20px;">
    <p style="margin: 0;">Reply to this message by <a href="https://community.jboss.org/message/824600#824600">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JBoss Messaging at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2042">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


                </td>
            </tr>
        </tbody>
    </table>

</div>

</body>
</html>