If you are getting servlets loaded twice, your configuration is messed up.
The most likely way to cause this to happen is to have a directory under
webapps (so that it gets automatically deployed) plus a <Context> element
in server.xml that points at the same directory, but with another context
path.  What happens here is that you're initializing two webapps from the
same directory -- and the initialization happens for each of them.

Turns out this describes my problem.  I was following the "examples" context
(which must end up reloading servlets twice as well, right?) and an onjava
article I found online...I guess these weren't quite as accurate as I had
hoped for.  Any suggestions about fixing this problem?

Thanks!

Jeff


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

Reply via email to