Wrox Home  
Search P2P Archive for: Go

  Return to Index  

enterprise_java_beans thread: Re: EJB:using servlet in weblogic5.1


Message #1 by "viccos" <viccos@m...> on Thu, 8 Aug 2002 13:10:05
Before you deploy the EJB, try this on your servlet:

MyClassHome home = (MyClassHome)new InitialContext().lookup
("com/pkg/MyClassHome");
MyClass class = home.create();
class.callMethod( smsParameters );

  Return to Index