<!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;">
Get ejb3 from remote host (jboss 5.1) to jboss 4.x
</h3>
<span style="margin-bottom: 10px;">
created by <a href="https://community.jboss.org/people/clanfur">Michele Furlan</a> in <i>JNDI and Naming</i> - <a href="https://community.jboss.org/message/646964#646964">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,</p><p>I'm trying to get an ejb3 from a remote host (that uses jboss 5.1) inside jboss 4.x. The code I use is the following:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>public void myFunction() {</p><p>        Properties jndiProps = new Properties();</p><p>        jndiProps.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");</p><p>        jndiProps.setProperty(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interface");</p><p>        jndiProps.setProperty(Context.PROVIDER_URL, "jnp://{<strong>host-ip</strong>}:{<strong>host-jndi-port</strong>}");</p><p>        try {</p><p>            FooInterface foo = (FooInterface)(new InitialContext(jndiProps)).lookup("{<strong>jndi-name</strong>}");</p><p>            foo.doSomething();</p><p>        } catch (Exception e) {</p><p>            e.printStackTrace();</p><p>        }</p><p>        </p><p>    }</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>But doing that, I get a ClassCastException here "FooInterface foo = (FooInterface)(new InitialContext(jndiProps)).lookup("{<strong>jndi-name</strong>}");":</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p> java.lang.ClassCastException: javax.naming.Reference cannot be cast to my.package.FooInterface</p><p>   at com.phi.phirxportal.SecondOpinionRequestBean.myFunction(SecondOpinionRequestBean.java:272)</p><p>   at com.phi.phirxportal.SecondOpinionRequestBean.checkExam(SecondOpinionRequestBean.java:170)</p><p>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)</p><p>     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)</p><p>    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)</p><p>     at java.lang.reflect.Method.invoke(Method.java:597)</p><p>     at org.jboss.el.util.ReflectionUtil.invokeMethod(ReflectionUtil.java:335)</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Host ip, jndi name and host jndi port are correct. I can't figure out how to get my FooInterface from a javax.naming.Reference object.</p><p>The Reference object toString method returns something like:</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Reference Class Name: Proxy for: my.package.FooInterface</p><p>Type: ProxyFactoryKey</p><p>Content: ProxyFactory/.....</p><p>Type: EJB Container Name</p><p>Content: jboss.j2ee:ear=xxx.ear,jar=xxx.jar,name=FooBean,service=EJB3</p><p>Type: Proxy Factory is Local</p><p>Content: false</p><p>Type: Remote Business Interface</p><p>Content: my.package.FooInterface</p><p>Type: Remoting Host URL</p><p>Content: socket://hostpcname:3873/?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"> </p><p>Is there a way to do that or does it depends on something else (libraries, configuration, jboss version...)?</p><p>Thanks in advance.</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/646964#646964">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>