Removing a webapp that crashed on startup?

2004-11-30 Thread Michael Schuerig
During development I sometimes have the case that my webapp crashes on startup. If that happens, I stop Tomcat, remove from CATALINA_BASE everything that's related to my app, and start Tomcat again. Simply removing the rogue app from the Manager doesn't work, it raises an exception:

RE: Removing a webapp that crashed on startup?

2004-11-30 Thread Shapira, Yoav
Hi, What manager command are you trying? The manager's stop command is not the one to use here, since as it says the context was never started. But depending on when in the startup the context crashed, the manager's undeploy command might be useful to you. Yoav Shapira

Re: Removing a webapp that crashed on startup?

2004-11-30 Thread Michael Schuerig
On Tuesday 30 November 2004 17:09, Shapira, Yoav wrote: What manager command are you trying? The manager's stop command is not the one to use here, since as it says the context was never started. But depending on when in the startup the context crashed, the manager's undeploy command might

Re: Removing a webapp that crashed on startup?

2004-11-30 Thread Chris Cherrett
It sounds like it is referencing the complied version of the code in the tomcat/work/Catalina/localhost folder. I would delete your app folder from within this structure and see if it goes away. There is no danger in deleting these files as tomcat will recreate them when needed. I hope this