RELAX_VERSION_LOOKUP问题

时间:2012-01-19 13:17:11

标签: deployment ejb-3.0 weblogic-10.x

我经常在服务器中遇到查找失败问题。

  

无法获取BinRemote的远程句柄。 :无法解决   'BinBean#com.mine.org.bin.BinRemote.qaw10-51865'。解决   'BinBean#com.mine.org.bin.BinRemote'可能版本'qaw10-51865'   申请'MYJms'退休了。放松查找返回   活动版本,设置定义的上下文环境属性   weblogic.jndi.WLContext.RELAX_VERSION_LOOKUP为“true”。

我很高兴并建议将weblogic.jndi.WLContext.RELAX_VERSION_LOOKUP设置为true。我该怎么办?我不擅长WL。请帮忙。

提前致谢。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

要将RELAX_VERSION_LOOKUP应用于一个区域,请使用:

Environment env = new Environment();
env.setProperty(weblogic.jndi.WLContext.RELAX_VERSION_LOOKUP, "true");
env.getInitialContext().lookup(...);