Hi,
 I have a JSP need to load on tomcat startup, so I
specify it in the web.xml:
    <servlet>
        <servlet-name>
            TestStartup
        </servlet-name>
        <jsp-file>
             /jsp/TestStartup.jsp
        </jsp-file>
        <load-on-startup>
            1
        </load-on-startup>
    </servlet>

Then I restart tomcat, but it is not even compiled, so
I added URI mapping of this serverlet to web.xml:
   <servlet-mapping>
        <servlet-name>
            TestStartup
        </servlet-name>
        <url-pattern>
            /TestStartup
        </url-pattern>
    </servlet-mapping>

Then I type the URL: http://localhost/TestStartup,
then it got complied and loaded, but if I restart
tomcat again, it is still not automaticatlly loaded on
startup ?
 Is it a bug of tomcat 3.2.3 ? Or Am I missing some
thing ?

Thanks.
David


__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com

--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to