> My appologies if I sent this twice, I sent it as the body of the subscribe > originally, not sure if that works. > > In any case: > > When I use manager/reload?path=... it doesn't reparse web.xml, but does > reload classes. Am I missing something or ... Everything else I have done is > working fine.
Yes, that's normal. Reparsing and recreating the whole webapp is very time consuming, so reload (also used for class reloading) doesn't do that. A "true" reload is to first do a 'stop', followed by a 'start'. That sequence would completely destroy the webapp, and then reparse web.xml and recreate it. Remy -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
