Hi Darshan,
We can achieve this by specifying the load-on-startup tag in web.xml in the case of 
servlets. We have done this in Weblogic7.0

Ex:
<servlet>
    <servlet-name>YourServletName</servlet-name>
    <servlet-class>YourServletClass</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>

Thanks
Raju


  ----- Original Message ----- 
  From: Skandha Darshan 
  To: [EMAIL PROTECTED] 
  Sent: Saturday, March 13, 2004 6:10 PM
  Subject: Controller servlet


  I am having a single controller servlet being called from all the JSPs
  All the processing occurs in the helper classes called from the servlet
  But i need to do some logic before my first JSP loads
  write now i am having one more jsp that directly calls the servlet does
  some functioning and returns the control to home page

  I just wanted to know if there could be any other method?
  - - - - - - - - - - - - - - - - - - - -- - - - - - - - - - - - - - - - - -
  - - - - - - - - - - -
  T.SKANDHA DARSHAN
  Tata Reseach Development and Design Center

  ===========================================================================
  To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
  For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

  Some relevant archives, FAQs and Forums on JSPs can be found at:

   http://java.sun.com/products/jsp
   http://archives.java.sun.com/jsp-interest.html
   http://forums.java.sun.com
   http://www.jspinsider.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".

Some relevant archives, FAQs and Forums on JSPs can be found at:

 http://java.sun.com/products/jsp
 http://archives.java.sun.com/jsp-interest.html
 http://forums.java.sun.com
 http://www.jspinsider.com

Reply via email to