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?
Just do this:
MyClassHome home = (MyClassHome)new InitialContext().lookup
("com/pkg/MyClassHome");
MyClass class = home.create();
class.callMethod( smsParameters );
|





