| Author |
servlet context without servlet
|
Anand Gondhiya
Ranch Hand
Joined: Feb 24, 2004
Posts: 155
|
|
Hi, I am using startus and EJB with Weblogic 6.1. Could anybody tell me how do I use "servlet context" in any class other than servlet ??? Thanks a lot -Anand.
|
 |
Sanjeev Kaushik
Ranch Hand
Joined: Aug 01, 2002
Posts: 105
|
|
ServletContext is an object, which is passed to Servlets by the Servlet Container. So source is servlets. I think you can try following ways. You can pass servlet reference to the Class which is going to use ServletConext. Once servlet reference has come you get ServletContext also. Another way is to implement ServletContextListener interface by this class. Whenever ServletContext is created this class will get notification and from the event ServletContextEvent you can get ServletContext. Actual scenario is not clear to me, so I am just throwing ideas. But I think above ideas should be able to help you.
|
Sanjeev Kaushik
|
 |
 |
|
|
subject: servlet context without servlet
|
|
|