| Author |
Deploying EJB on weblogic8.1
|
Nalini Reddy
Greenhorn
Joined: Jul 01, 2004
Posts: 18
|
|
Hi All, I have written a simple HelloWorld EJB. I have written a Home Interface,Remote interface,Bean class and Deployment descriptor.Made all these into a jar file(after compiling all). Then have written a client code to lookup and compiled it also.Now how do I deploy my EJB on weblogic8.1 and how to call the method hello()in the remote interface which displays HelloWorld.This is the first time I am doing a sample application on EJB.Trying to learn.Kindly help me out please. Thanks,in advance Nalini
|
 |
Mani vannan
Ranch Hand
Joined: Aug 21, 2004
Posts: 185
|
|
Hi ! Assit the following code for JNDI look up in ur client program. Context myEnv = (Context) initial.lookup("java:comp/env"); Object objref = myEnv.lookup("ejb/myapplication"); where, myapplication is the name to be registered in JNDI Lookup. follow the link, for more http://e-docs.bea.com/wls/docs60/ejb/deploy.html#1054980 By Manivannan.P
|
Manivannan
|
 |
 |
|
|
subject: Deploying EJB on weblogic8.1
|
|
|