Jboss (6.4 EAP) 到 WebSphere (7.x)

Posted

技术标签:

【中文标题】Jboss (6.4 EAP) 到 WebSphere (7.x)【英文标题】:Jboss (6.4 EAP) to WebSphere (7.x) 【发布时间】:2016-09-10 01:22:01 【问题描述】:

我正在尝试从 进行 EJB 调用。 我有一个从 WebSphere (WAS) 到 WAS 的工作示例,但是,相同的位置和查找名称返回名称未找到异常。我目前正在作为 WAR 部署到 Jboss 中的 Web 应用程序内部进行此测试。

我没有在 web.xml 和 jboss-web.xml 中定义 EJB(我认为我不需要它)。 WebSphere 中的 EJB 版本是 2.1。

Properties env = new Properties();
env.put(Context.PROVIDER_URL, "corbaloc::example.test.com:11000");
InitialContext ctx = new InitialContext(env);
Object obj= ctx.lookup("cell/clusters/MyEJBHome12Cluster/MyEJBHome");

上面抛出了一个 NameNotFoundException:

javax.naming.NameNotFoundException: cell/clusters/MyEJBHome12Cluster/MyEJBHome -- service jboss.naming.context.java.cell.clusters."MyEJBHome12Cluster"."MyEJBHome"
    at org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNamingStore.java:104)
    at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:197)
    at org.jboss.as.naming.InitialContext$DefaultInitialContext.lookup(InitialContext.java:243)
    at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:183)
    at org.jboss.as.naming.NamingContext.lookup(NamingContext.java:179)
    at javax.naming.InitialContext.lookup(InitialContext.java:411)
    at javax.naming.InitialContext.lookup(InitialContext.java:411)
    at com.test.ejbClient.getRemoteConnection(ejbClient.java:192)
    at com.test.ejbClient.runIt(ejbClient.java:77)
    at com.test.TestRemoteEJB.doGet(TestRemoteEJB.java:59)

我也尝试过使用sun factory:com.sun.jndi.cosnaming.CNCtxFactory

env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.cosnaming.CNCtxFactory");

这会产生一些相似的结果:

javax.naming.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
    at com.sun.jndi.cosnaming.ExceptionMapper.mapException(ExceptionMapper.java:61)
    at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:502)
    at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:541)
    at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:519)
    at javax.naming.InitialContext.lookup(InitialContext.java:411)
    at javax.naming.InitialContext.lookup(InitialContext.java:411)
    at com.test.ejbClient.getRemoteConnection(ejbClient.java:192)
    at com.test.ejbClient.runIt(ejbClient.java:77)
    at com.test.TestRemoteEJB.doGet(TestRemoteEJB.java:59)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:734)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:847)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:295)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:214)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:231)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:149)
    at org.jboss.as.web.security.SecurityContextAssociationValve.invoke(SecurityContextAssociationValve.java:169)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:150)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:97)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:102)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:854)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:653)
    at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:926)
    at java.lang.Thread.run(Thread.java:745)
Caused by: org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0
    at org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelper.java:72)
    at org.omg.CosNaming._NamingContextStub.resolve(_NamingContextStub.java:251)
    at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:488)

以上尝试使用以下站点:Reference Link First

然后我尝试使用 IBM 客户端 jar,只是想看看我是否可以接到工作电话。我关注了这个网站:Reference Link 2

我加了 2 个罐子:

com.ibm.ws.ejb.thinclient_8.5.0.jar com.ibm.ws.orb_8.5.0.jar

我还添加了所有包含 EJB 类和存根类的 jar。我使用了 com.ibm.websphere.naming.WsnInitialContextFactory 的工厂。它可以很好地查找 EJB,但是在 PortableRemoteObject.narrow 调用期间,它会失败并显示

java.lang.ClassCastException: com.test._MyEJBHome_Stub cannot be cast to org.omg.CORBA.Object

我怀疑我是否能够使用 WAS jars,因为我必须使用 Java 1.8 运行,它不适用于我上面的客户端 jars,我也不喜欢在 JBoss 中使用 IBM jars 当 Jboss应该可以做到。

【问题讨论】:

您可能知道默认情况下,WebSphere iiop 侦听 2809,而不是 11000。如果这不是问题,也许此页面上的某些内容会有所帮助:ibm.com/support/knowledgecenter/SSAW57_7.0.0/… 更正我之前的评论:通常您通过引导端口查找 InitialContext,默认情况下是 2809,而不是 11000。如果这不是问题,也许此页面上的某些内容会有所帮助:@987654324 @这个页面也可能有帮助:ibm.com/support/knowledgecenter/was_beta/… 我遇到了同样的问题。你能告诉我你是怎么解决的吗? 我们确实解决了它。我添加了答案并接受了它。请看一看。 【参考方案1】:

我们最终找到了解决此问题的方法。有一组神奇的字符需要在 JBoss 的查找中。以前,提供者 URL 和 JNDI 是分开的。现在,它们都在查找字符串中,如下所示。此外,没有向 InitialContext 添加其他参数。

InitialContext ctx = new InitialContext(); // no need to add anything to the context

// A few reminders about the below:
// 1. For multiple hosts, separate with commas, i.e. "corbaname::@<server:port>,:@<server2:port2>"
// 2. If periods are used in the lookup name, they must be escaped, i.e. MyEJBHome-1.0 needs to be MyEJBHome-1\.0
Object obj= ctx.lookup("corbaname::@example.test.com:11000/NameServiceServerRoot#cell/clusters/MyEJBHome12Cluster/MyEJBHome");

// Normal EJB things below
MyEJBHome home = (MyEJBHome) javax.rmi.PortableRemoteObject.narrow(obj, MyEJBHome.class);
MyEJB myEJB = home.create();

【讨论】:

以上是关于Jboss (6.4 EAP) 到 WebSphere (7.x)的主要内容,如果未能解决你的问题,请参考以下文章

如何定义 JBoss 安全角色 - 从 WebSphere 迁移到 EAP 6.4

在 JBoss EAP 6.4 中没有检测到 HTTP 安全头

在 Eclipse Luna 中配置 jboss-eap-6.4 服务器时分配正确的主目录时出错

JBoss EAP 6.4 Infinispan 集群缓存网络问题

无法在 Jboss-eap-6.4 中部署 Spring Boot 应用程序

Jboss eap 6.4 https 配置监听端口 8443 失败