Wrox Home  
Search P2P Archive for: Go

  Return to Index  

enterprise_java_beans thread: Re: i have deploy an EJB in weblogic 6.1,but how to use jsp to invoke the EJB's method?


Message #1 by "viccos" <viccos@m...> on Thu, 8 Aug 2002 13:09:10
Just do this:

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

  Return to Index