Hi, How do I call an EJB from a JSP? I have an ejb deployed on Weblogic and which runs fine from a stand alone java client. I would like to run it from the web using jsp. Not sure what the code needs to look like. I want it so that anyone with a browser can hit it. sample code appreciated... many thanks, steve
Tieyi Guo
Greenhorn
Joined: Oct 29, 2001
Posts: 15
posted
0
I do not have the sample code you asked for, however I think you should use some kind of JSP-Servlet-EJB model for your project. ie. using JSP for front end presentation, using servlet program as controller and using EJB as application logic, this fits the so called "MVC"-Model-View-Controller pattern. The details as to how to invoke servlet from JSP and return back to JSP from servlet are quite simple and straightforward. You can find it in nay JSP book. You can invoke your EJB session bean from your servlet code and through the session facade to do all business logic stuff. Hope this helps. Tieyi
steve dowdall
Ranch Hand
Joined: May 23, 2001
Posts: 36
posted
0
Thanks, I'm using the MVC 5 layered architecture. I was just looking for some jsp code to call the ejb. Steve
Liz Brown
Ranch Hand
Joined: Oct 22, 2002
Posts: 112
posted
0
I heard about MVC2 . what's MVC5 here? can you please explain.
Ronak Patel
Ranch Hand
Joined: Aug 14, 2002
Posts: 31
posted
0
Hi ,as per my knowlege there are just 2 model of MVC(1 and 2). Whats MVC 5 man?