当前位置:  开发笔记 > 运维 > 正文

如何从独立客户端调用远程EJB

如何解决《如何从独立客户端调用远程EJB》经验,为你挑选了1个好方法。

我将我的EJB部署在weblogic服务器上.我想从独立应用程序(瘦客户端)访问这些EJB.



1> Swapnil..:

好的......我自己找到了.:)

这是我用来从瘦客户端连接到远程EJB的代码.

 Hashtable env = new Hashtable(5);
 env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
 //Assuming weblogic server is running on localhost at port 7001
 env.put(Context.PROVIDER_URL, "t3://localhost:7001");

 Context ic = new InitialContext(env);

 //obtain a reference to the home or local home interface
 FooHome fooHome = (FooHome)ic.lookup("MyBeans/FooHome");

 //Get a reference to an object that implements the beans remote (component) interface
 Foo foo = fooHome.create();

 //call the service exposed by the bean
 foo.shoutFoo()

这对我有用.


如果这对您有用,您应该接受自己的答案.
推荐阅读
手机用户2502852037
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有