Can anyone tell me how I would go about calling a servlet
from a session bean that’s running in the same J2EE application.
Application server is Oracle10g.
Thanks.
-
Question? EJB calling a Servlet. (1 messages)
- Posted by: Gary Cannell
- Posted on: June 28 2005 11:00 EDT
Threaded Messages (1)
- Question? EJB calling a Servlet. by adrian osullivan on June 29 2005 05:49 EDT
-
Question? EJB calling a Servlet.[ Go to top ]
- Posted by: adrian osullivan
- Posted on: June 29 2005 05:49 EDT
- in response to Gary Cannell
Servlets are handling HTTP requests, not java method calls. Refactor and move the functionality you want to access out of the servlet into a class that your bean can call.