You're probably searching for the wrong thing!
 From web.xml (see http://java.sun.com/dtd/web-app_2_3.dtd)

<!--
The load-on-startup element indicates that this servlet should be
loaded (instantiated and have its init() called) on the startup
of the web application. The optional contents of
these element must be an integer indicating the order in which
the servlet should be loaded. If the value is a negative integer,
or the element is not present, the container is free to load the
servlet whenever it chooses. If the value is a positive integer
or 0, the container must load and initialize the servlet as the
application is deployed. The container must guarantee that
servlets marked with lower integers are loaded before servlets
marked with higher integers. The container may choose the order
of loading of servlets with the same load-on-start-up value.

Used in: servlet
-->
<!ELEMENT load-on-startup (#PCDATA)>

<!--




neal wrote:

>In a previous thread someone mentioned that it is possible to set a servlet
>to run as Tomcat is started.
>
>Could someone please provide me with a syntactical example of how to set
>this up?
>
>I have searched the documentation, I've searched for exmaples in the web.xml
>files, and I've scoured the Internet and I can not find any documentation or
>examples.
>
>I guess I'm just looking int he wrong places???
>
>Thanks.
>Neal
>
>
>--
>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
>
>  
>




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to