我将我的EJB部署在weblogic服务器上。我想从独立应用程序(瘦客户端)访问这些EJB。
答案 0 :(得分:20)
好的......我自己找到了。 :)
以下是我用来从瘦客户端连接到远程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()
这对我有用。