<!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;">
    JNDI over SSL Naming problem
</h3>
<span style="margin-bottom: 10px;">
    created by <a href="https://community.jboss.org/people/pfennig">Elad o</a> in <i>JNDI and Naming</i> - <a href="https://community.jboss.org/message/788699#788699">View the full discussion</a>
</span>
<hr style="margin: 20px 0; border: none; background-color: #dadada; height: 1px;">

<div class="jive-rendered-content"><p>Hi everyone and thanks to anyone reading this post.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I've been struggling a few days, trying to change the communication of my client-server JNDI lookup from http to https.</p><p>I'm using JBoss 4.2.0 and upgrading it is currently not an option.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>What I did in the client is to change the url as advised in the jboss manual. </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><table><tbody><tr><td style=";"></td><td style=";"></td><td style=";"><br/></td></tr><tr><td style=";"></td><td style=";"></td><td style=";">System.setProperty("javax.net.ssl.trustStore", "C:/Program Files (x86)/localhost.truststore");</td></tr><tr><td style=";"></td><td style=";"></td><td style=";">System.setProperty("javax.net.ssl.trustStoreType", "JKS");</td></tr><tr><td style=";"></td><td style=";"></td><td style=";">System.setProperty("javax.net.ssl.trustStorePassword", "opensource");</td><td style=";"></td><td style=";"></td></tr><tr><td style=";"></td><td style=";"></td><td style=";">System.setProperty(HTTPSClientInvoker.IGNORE_HTTPS_HOST,"true");</td></tr><tr><td style=";"></td><td style=";"></td><td style=";"></td></tr><tr><td style=";"></td><td style=";"></td><td style=";">jndiProperties.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.naming.HttpNamingContextFactory");</td></tr><tr><td style=";"></td><td style=";"></td><td style=";"><br/></td></tr><tr><td style=";"></td><td style=";"></td><td style=";"><p><span>jndiProperties.put(Context.PROVIDER_URL, "</span><a class="jive-link-external-small" href="https://" target="_blank">https://</a><span>"+serverIp+":8443/invoker/JNDIFactory"</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><table><tbody><tr><td style=";"></td><td style=";"></td><td style=";">final Context context = new InitialContext(jndiProperties);</td></tr><tr><td style=";"></td><td style=";"></td><td style=";"></td></tr><tr><td style=";"></td><td style=";"></td><td style=";">T facade = (T) context.lookup(facadeName);</td></tr><tr><td style=";"></td><td style=";"></td><td style=";">return facade;</td></tr></tbody></table></td></tr></tbody></table><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>previously the url was: </p><p>jndiProperties.put(Context.PROVIDER_URL, "jnp://"+serverIp+":1099");</p><p>and the contextfactory was</p><p>jndiProperties.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>the serverIp is the real server the user enters. I don't want to use a network host name since I don't have a dns server in my server.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I didn't have any problem with the jnp url and the jnp naming factory, but when I try the access over SSL, the Jboss code in </p><p>HTTPNamingContextFactory.getNamingServer(URL providerURL) overrides my ip with a host name the client doesn't recognize.</p><p>It does some marshalling from the server and takes the first host entry which is defined in my linux server hosts file.</p><p>The HttpInvokerProxy does that eventually by writing the externalURLValue from the server, which is:</p><p><a class="jive-link-external-small" href="https://myhost:8443/invoker/JMXInvokerServlet" target="_blank">https://myhost:8443/invoker/JMXInvokerServlet</a><span>. </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>My client doesn't know what to do with this "myhost", it needs the real ip of the server, which I initially provide in the JNDI properties in the client.</p><p>The only thing I was able to do is edit the hosts file in the client windows system hosts file, and add an entry myhosts with the real ip, but this is of course </p><p>not a solution for a production environment, since I can't ask my user to make such modifications. </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>So I get this exception in the client:</p><p>javax.naming.CommunicationException: Operation failed [Root exception is java.rmi.ServerException: IOE; nested exception is: </p><p>&#160;&#160;&#160; java.net.UnknownHostException: myhost</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>My server's deploy/http-invoker.sar/META-INF/jboss-service.xml is below, if I try to set useHostName to false, then the localhost ip would be used</p><p>127.0.0.1 instead of myhost, which isn't any helpful, since I just need to keep my initially provided ip.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>I'm a newbee to JBoss so I will appreciate any answer as to what am I doing wrong, and how can I resolve this without upgrade of JBOSS.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Thank You</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;?xml version="1.0" encoding="UTF-8"?&gt;</p><p>&lt;!DOCTYPE server&gt;</p><p>&lt;!-- $Id: jboss-service.xml 26202 2004-11-29 16:54:36Z starksm $ --&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&lt;server&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160; &lt;!-- The HTTP invoker service configration</p><p>&#160; --&gt;</p><p>&#160; &lt;mbean code="org.jboss.invocation.http.server.HttpInvoker"</p><p>&#160;&#160;&#160; name="jboss:service=invoker,type=https"&gt;</p><p><span>&#160;&#160;&#160;&#160; &lt;!-- Use a URL of the form </span><a class="jive-link-external-small" href="http://" target="_blank">http://</a><span>&lt;hostname&gt;:8080/invoker/EJBInvokerServlet</span></p><p>&#160;&#160;&#160;&#160;&#160; where &lt;hostname&gt; is InetAddress.getHostname value on which the server</p><p>&#160;&#160;&#160;&#160;&#160; is running.</p><p>&#160;&#160;&#160;&#160;&#160; --&gt;</p><p><span>&#160;&#160;&#160;&#160; &lt;attribute name="InvokerURLPrefix"&gt;</span><a class="jive-link-external-small" href="https://" target="_blank">https://</a><span>&lt;/attribute&gt;</span></p><p>&#160;&#160;&#160;&#160; &lt;attribute name="InvokerURLSuffix"&gt;:${https.port}/invoker/EJBInvokerServlet&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160; &lt;attribute name="UseHostName"&gt;true&lt;/attribute&gt;</p><p>&#160; &lt;/mbean&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160; &lt;!-- Expose the Naming service interface via HTTP --&gt;</p><p>&#160;&#160; &lt;mbean code="org.jboss.invocation.http.server.HttpProxyFactory"</p><p>&#160;&#160;&#160;&#160;&#160; name="jboss:service=invoker,type=http,target=Naming"&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;!-- The Naming service we are proxying --&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="InvokerName"&gt;jboss:service=Naming&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;!-- Compose the invoker URL from the cluster node address --&gt;</p><p><span>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="InvokerURLPrefix"&gt;</span><a class="jive-link-external-small" href="https://" target="_blank">https://</a><span>&lt;/attribute&gt;</span></p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="InvokerURLSuffix"&gt;:${https.port}/invoker/JMXInvokerServlet&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="UseHostName"&gt;true&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="ExportedInterface"&gt;org.jnp.interfaces.Naming&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="JndiName"&gt;&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="ClientInterceptors"&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptors&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.proxy.ClientMethodInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.proxy.SecurityInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.naming.interceptors.ExceptionInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.invocation.InvokerInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/interceptors&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/attribute&gt;</p><p>&#160;&#160; &lt;/mbean&gt;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>&#160;&#160; &lt;!-- Expose the Naming service interface via clustered HTTP. This maps</p><p>&#160;&#160; to the ReadOnlyJNDIFactory servlet URL</p><p>&#160;&#160; --&gt;</p><p>&#160;&#160; &lt;mbean code="org.jboss.invocation.http.server.HttpProxyFactory"</p><p>&#160;&#160;&#160;&#160;&#160; name="jboss:service=invoker,type=http,target=Naming,readonly=true"&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="InvokerName"&gt;jboss:service=Naming&lt;/attribute&gt;</p><p><span>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="InvokerURLPrefix"&gt;</span><a class="jive-link-external-small" href="http://" target="_blank">http://</a><span>&lt;/attribute&gt;</span></p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="InvokerURLSuffix"&gt;:8080/invoker/readonly/JMXInvokerServlet&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="UseHostName"&gt;true&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="ExportedInterface"&gt;org.jnp.interfaces.Naming&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="JndiName"&gt;&lt;/attribute&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;attribute name="ClientInterceptors"&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptors&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.proxy.ClientMethodInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.proxy.SecurityInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.naming.interceptors.ExceptionInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;interceptor&gt;org.jboss.invocation.InvokerInterceptor&lt;/interceptor&gt;</p><p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &lt;/interceptors&gt;</p><p>&#160;&#160;&#160;&#160;&#160; &lt;/attribute&gt;</p><p>&#160;&#160; &lt;/mbean&gt;</p><p>&lt;/server&gt;</p></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/788699#788699">going to Community</a></p>
        <p style="margin: 0;">Start a new discussion in JNDI and Naming at <a href="https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2083">Community</a></p>
</div></td>
                        </tr>
                    </tbody>
                </table>


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

</div>

</body>
</html>