Re: web.xml and manager application

2002-09-23 Thread William Wragg
Hi, Not sure what this would be, permissions? Have a look at: http:///tomcat-docs/manager-howto.html If this doesn't help, send the command, directory of webapp, etc... and I'll see if there is anything wrong. I'm not sure if 4.0.1 is different from 4.0.4 where the manager is concerned, so if

Re: web.xml and manager application

2002-09-20 Thread info
Hi, > If the webapp is just in a directory _not_ packaged as a .war file then use: > http://localhost:8080/manager/install?path=/myApp&war=file:/path/to/myApp thanks for your answere. Well it is not working with me I am getting an error: FAIL - Encountered exception java.lang.IllegalArgumentExce

Re: web.xml and manager application

2002-09-20 Thread William Wragg
Hi, If the webapp is just in a directory _not_ packaged as a .war file then use: http://localhost:8080/manager/install?path=/myApp&war=file:/path/to/myApp If the webapp is packaged as a .war file use: http://localhost:8080/manager/install?path=/myApp&war=jar:/path/to/myApp.war!/ Hope this helps

Re: web.xml and manager application

2002-09-20 Thread info
Hi, I cannot install the Webapp with the manager app since it is not a .war. Do you know if there is a way? If I only try: http://localhost:8080/manager/install?path=/myApp I am getting a FAIL - Invalid application URL null was specified message. thanks, Rainer > Hi, > > I had this on 4.0.4.

Re: web.xml and manager application

2002-09-20 Thread info
[mailto:[EMAIL PROTECTED]] > > Sent: Friday, September 20, 2002 10:15 AM > > To: Tomcat Users List > > Subject: Re: web.xml and manager application > > > > > > Hi, > > > > I had this on 4.0.4. The way I got around it was: > > > > (1) Undeploy

RE: web.xml and manager application

2002-09-20 Thread Cox, Charlie
just use stop and start. That will read the web.xml Charlie > -Original Message- > From: William Wragg [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 20, 2002 10:15 AM > To: Tomcat Users List > Subject: Re: web.xml and manager application > > > Hi, >

Re: web.xml and manager application

2002-09-20 Thread William Wragg
Hi, I had this on 4.0.4. The way I got around it was: (1) Undeploy the wepapp - http://localhost:8080/manager/remove?path=/myApp (2) Delpoy the webapp - http://localhost:8080/manager/install?path=/myApp&war=file:/path/to/myApp This seemed to reparse the web.xml file OK. Reagards, Wm. At 12:

web.xml and manager application

2002-09-20 Thread info
Hi, using Tomcat 4.0.1 on a Linux Box (SuSE 7.3) with JDK 1.3.1. When I change the web.xml of a webapp and want to reload that webapp using the manager application the web.xml-file is not parsed again. Only when I restart the container. Is that normal? Is there a soulution? It is quite unhandy!