从 jboss4.x 迁移到 jboss5.x
我想将我的 EAR 文件从 jboss4.x 迁移到 5.1.0GA..我有多个 WAR 文件和相应的 EJB3.0 JAR 文件....当我在 jboss4.x 中部署此 EAR 时它工作正常...但是当我尝试在 jboss5.1.0 中部署相同的 EAR 文件时,它在日志中显示一些错误,如下所示...
javax.naming.NameNotFoundException: remote not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:771)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:779)
at org.jnp.server.NamingServer.getObject(NamingServer.java:785)
at org.jnp.server.NamingServer.lookup(NamingServer.java:443)
at org.jnp.server.NamingServer.lookup(NamingServer.java:399)
at org.jnp.server.NamingServer.lookup(NamingServer.java:399)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:726)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:686)
at javax.naming.InitialContext.lookup(InitialContext.java:392)
任何人都可以提供一些解决此问题的想法吗?...提前致谢
I want to migrate my my EAR file from jboss4.x to 5.1.0GA.. I have multiple WAR files and corresponding EJB3.0 JAR files.... When i deploy this EAR in jboss4.x it works fine... But when I try to deploy the same EAR file in jboss5.1.0 it shows some error in log as follows...
javax.naming.NameNotFoundException: remote not bound
at org.jnp.server.NamingServer.getBinding(NamingServer.java:771)
at org.jnp.server.NamingServer.getBinding(NamingServer.java:779)
at org.jnp.server.NamingServer.getObject(NamingServer.java:785)
at org.jnp.server.NamingServer.lookup(NamingServer.java:443)
at org.jnp.server.NamingServer.lookup(NamingServer.java:399)
at org.jnp.server.NamingServer.lookup(NamingServer.java:399)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:726)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:686)
at javax.naming.InitialContext.lookup(InitialContext.java:392)
Can any one please give some idea to solve this problem?... thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要查看以下内容。
1. 您使用 JBoss 的所有功能(JNDI、连接轮询、缓存)。
一旦您发现需要在新版本上解决该问题。
2. 您在当前 jBoss 启动过程中进行了哪些自定义操作,以便您可以在较新的版本上执行相同的操作。这包括类路径和一些库优先级。
You may need to have look into the following.
1. What all things you are using from JBoss (JNDI, Connection Polling, caching).
Once you find that you need to resolve that on the newer version.
2. What all customization you have done in current jBoss startup process so that you can do the same on newer version. This includes classpath and few libraries priorities.