Re: Deploying a webapp under two different URIs

2005-10-05 Thread Paul Singleton
Carsten Guenther wrote: I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt

Deploying a webapp under two different URIs (re-sent)

2005-09-23 Thread Carsten Guenther
Hi, I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp=true/ /Context

Deploying a webapp under two different URIs

2005-09-22 Thread Carsten Guenther
Hi, I want to deploy the same webapp under two different URIs. I created two context descriptors like this: Context path=/a docBase=/home/user/myapp debug=0 privileged=false Logger className=org.apache.catalina.logger.FileLogger prefix=a. suffix=.txt timestamp=true/ /Context Context

Re: Deploying a webapp under two different URIs

2005-09-22 Thread Ritchie Gillam
Are you are using Tomcat 5.5.X? If so it is not recommended to put any Context in the server.xml file but instead in the application's META-INF/context.xml file. One of the problems we had was by putting the Context tag in server.xml itself we couldn't redeploy an application without

Re: Deploying a webapp under two different URIs

2005-09-22 Thread Carsten Guenther
We are using 5.0.28 and we are using context deployment files. On Thu, 2005-09-22 at 15:23 -0300, Ritchie Gillam wrote: Are you are using Tomcat 5.5.X? If so it is not recommended to put any Context in the server.xml file but instead in the application's META-INF/context.xml file. One

Deploying root context

2005-09-15 Thread Durfee, Bernard
Is there a way to use the Tomcat 5.5.9 manager to deploy a WAR file as the root context? If not, how to I munge the deployed web application to make it the root context? Bernie - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Error listenerStart when deploying an application

2005-08-29 Thread Ittay Dror
Hi, I have a fairly large application I'm trying to port from jboss to tomcat. I've turned on debug logging with log4j (the contents at the end of this mail). In the log, I see the following: 2005-08-29 19:01:27,106 DEBUG [WebappClassLoader] (main:) Loading class from local repository

Deploying war applications under a sub directory

2005-08-25 Thread Paul Austin
I'm trying to deploy a war based web application to tomcat 5.5.9 on Windows XP JDK 1.4.2 and am experiencing problems with the deployment when the application path includes a sub directory before the application directory (e.g. /subdir/app instead of /app). When deploying to /app

RE: Deploying war in another directory

2005-08-24 Thread Allistair Crossley
you can change the appBase attribute per Host but I am not aware of whether you can mix based on webapp name. Allistair. -Original Message- From: XYZ [mailto:[EMAIL PROTECTED] Sent: 24 August 2005 15:51 To: tomcat-user@jakarta.apache.org Subject: Deploying war in another directory

Deploying war in another directory

2005-08-24 Thread XYZ
Hello. I would like to know how it is possible to have catalina deploy a war outside of $CATALINA_HOME/webapps. What I'd like to do is have catalina find the war in another path, $APPS. How can I do this? Thanks. - To

Re: Deploying war in another directory

2005-08-24 Thread XYZ
Please excuse the previous message. What I'm trying to accomplish is documented as 'running multiple instances'. On 20050824, at 105129, XYZ wrote: Hello. I would like to know how it is possible to have catalina deploy a war outside of $CATALINA_HOME/webapps. What I'd like to do is have

Re: Deploying war in another directory

2005-08-24 Thread Ben Souther
If you use the manager app, you can specify the location of the war file. On Wed, 2005-08-24 at 11:05, XYZ wrote: Please excuse the previous message. What I'm trying to accomplish is documented as 'running multiple instances'. On 20050824, at 105129, XYZ wrote: Hello. I would

Re: Deploying war in another directory

2005-08-24 Thread XYZ
Thanks for the replies. But I'm going to try $CATALINA_BASE. On 20050824, at 111740, Ben Souther wrote: If you use the manager app, you can specify the location of the war file. On Wed, 2005-08-24 at 11:05, XYZ wrote: Please excuse the previous message. What I'm trying to accomplish is

Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Allistair Crossley
Hi Everyone, Just been deploying ROOT.war into webapps and it's failing to explode. The logs indicate; INFO: Deploying web application archive ROOT.war 22-Aug-2005 09:46:44 org.apache.catalina.startup.ContextConfig applicationWebConfig INFO: Missing application web.xml, using defaults only

Re: Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Remy Maucherat
On 8/22/05, Allistair Crossley [EMAIL PROTECTED] wrote: Hi Everyone, Just been deploying ROOT.war into webapps and it's failing to explode. The logs indicate; INFO: Deploying web application archive ROOT.war 22-Aug-2005 09:46:44 org.apache.catalina.startup.ContextConfig

RE: Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Allistair Crossley
into webapps 4. Tomcat reports INFO: Deploying web application archive ROOT.war 22-Aug-2005 11:14:02 org.apache.catalina.startup.ContextConfig applicationWebConfig INFO: Missing application web.xml, using defaults only StandardEngine[Catalina].StandardHost[localhost].StandardContext[] 5. I rename

Re: Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Remy Maucherat
Tomcat's webapps folder and restart for good measure. I only deleted the ROOT folder. 3. I copy the war into webapps 4. Tomcat reports INFO: Deploying web application archive ROOT.war 22-Aug-2005 11:14:02 org.apache.catalina.startup.ContextConfig applicationWebConfig INFO: Missing

RE: Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Allistair Crossley
. -Original Message- From: Remy Maucherat [mailto:[EMAIL PROTECTED] Sent: 22 August 2005 11:32 To: Tomcat Users List Subject: Re: Deploying ROOT.war indicates missing application web.xml On 8/22/05, Allistair Crossley [EMAIL PROTECTED] wrote: Hi, Just to reconfirm, and also to take

RE: Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Allistair Crossley
, Allistair. -Original Message- From: Allistair Crossley Sent: 22 August 2005 11:48 To: Tomcat Users List Subject: RE: Deploying ROOT.war indicates missing application web.xml Hi, Yes, the default ROOT.war does appear to work in the way I have been trying to deploy my own

RE: Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Longson, Robert
Haveyou seen this article? http://ant.apache.org/faq.html#winzip-lies Best regards Robert -Original Message- From: Allistair Crossley [mailto:[EMAIL PROTECTED] Sent: 22 August 2005 11:59 To: Tomcat Users List Subject: RE: Deploying ROOT.war indicates missing application web.xml Hi

RE: Deploying ROOT.war indicates missing application web.xml

2005-08-22 Thread Allistair Crossley
Hi, Nope, but that looks helpful, Many thanks, Allistair. -Original Message- From: Longson, Robert [mailto:[EMAIL PROTECTED] Sent: 22 August 2005 12:11 To: Tomcat Users List Subject: RE: Deploying ROOT.war indicates missing application web.xml Haveyou seen this article

war files not deploying on redhat

2005-08-04 Thread Paul Warner
Hello, I have read the documentation and searched the archives, and whatever I have found, I have tried, but still my .war files will not unpack and auto deploy. I have been running a tomcat server for several months in which the .war files unpacked and auto-deployed perfectly. But with this

Re: war files not deploying on redhat

2005-08-04 Thread Edgar Alves
Hi, I don't know if it was just a typo in your post, but AutoDeploy should be |autoDeploy. -- Edgar Alves | Paul Warner wrote: Hello, I have read the documentation and searched the archives, and whatever I have found, I have tried, but still my .war files will not unpack and auto deploy.

RE: war files not deploying on redhat

2005-08-04 Thread Paul Warner
Hi, I don't know if it was just a typo in your post, but AutoDeploy should be |autoDeploy. -- Edgar Alves Thanks for the quick answer and sharp eye - but it WAS a typo, sorry! In the server.xml file, it is listed as autoDeploy=true. It is the basic server.xml file, not really

Re: war files not deploying on redhat

2005-08-04 Thread Edgar Alves
A typo in a post about a typo... :) s/|autodeploy/autoDeploy/ Edgar Alves wrote: Hi, I don't know if it was just a typo in your post, but AutoDeploy should be |autoDeploy. -- Edgar Alves | Paul Warner wrote: - To

Error while deploying a web application in Apache/Tomcat

2005-07-19 Thread Chamarthy, Ravi Kiran \(Exchange\)
Hi, We have Apache and Tomcat installed in Sun OS 5.8. When i am trying to deploy a new web application in the server , i am getting the following

deploying war files

2005-06-27 Thread Darren Carman
Hi, I have a project which generates log files within the project area. When I deploy a war file to a running tomcat instance the project appears to be deleted and re-created. Is there anyway to deploy automatically without deleting these files (or any files that exist in the project area that

RE: deploying war files

2005-06-27 Thread Phillip Qin
Move your log file out of your context. -Original Message- From: Darren Carman [mailto:[EMAIL PROTECTED] Sent: June 27, 2005 9:39 AM To: tomcat-user@jakarta.apache.org Subject: deploying war files Hi, I have a project which generates log files within the project area. When I deploy

AW: deploying war files

2005-06-27 Thread Bernhard Slominski
: Darren Carman [mailto:[EMAIL PROTECTED] Gesendet: Montag, 27. Juni 2005 15:39 An: tomcat-user@jakarta.apache.org Betreff: deploying war files Hi, I have a project which generates log files within the project area. When I deploy a war file to a running tomcat instance the project appears

Treating requests while application is deploying...

2005-06-01 Thread MC Moisei
Hi, I was searching thru documentation about this matter but I didn't find an answer yet. I want to display to the end users a default down page, automatically, during deployment. How do I do that ? I assume I'd have to modify the DefaultServlet and it's error handling. Is there a

Avoiding deploying an application twice

2005-05-02 Thread Mott Leroy
I wasn't able to find this particular error when I did a search, so I thought I'd post here in case someone has a similar problem. I was having an error when remotely deploying an application (tomcat 5.0.28) using the tomcat manager (via Ant tasks). I did not explicitly define a context.xml

deployer always deploying context.xml

2005-04-27 Thread Paulo Alvim
Hi! We are using Tomcat Deployer with TC528 and trying to make it work without include the context.xml into the WAR. Since we have a WAR as a product, we can't define SGBD connection pooling information in advance...and it seems to be the way J2EE should work (context.xml as a deployment time

Deploying Sakai 1.5.0 with Tomcat 5.5.7

2005-04-18 Thread Joe Bautista
Hi everyone, I'm trying to deploy Sakai 1.5.0 with Tomcat 5.5.7. I've received several emails from people on the sakai user group telling me that Sakai 1.5.0 hasn't been proven to run with Tomcat 5.5.7, but I wanted to learn a little bit on my own, so I'm trying to make it work. Part of the

RE: Deploying Sakai 1.5.0 with Tomcat 5.5.7

2005-04-18 Thread Fritz Schneider
Joe, Do you also have a deployed application at TOMCAT_HOME/webapps/sakai-dispatch? If so, what does its web.xml look like? Fritz -Original Message- From: Joe Bautista [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 1:59 PM To: tomcat-user@jakarta.apache.org Subject: Deploying

RE: Deploying Sakai 1.5.0 with Tomcat 5.5.7

2005-04-18 Thread Joe Bautista
-pattern /portal/* /url-pattern /servlet-mapping Thanks Fritz, Joe -Original Message- From: Fritz Schneider [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 2:11 PM To: 'Tomcat Users List' Subject: RE: Deploying Sakai 1.5.0 with Tomcat 5.5.7 Joe, Do you also have

RE: Deploying Sakai 1.5.0 with Tomcat 5.5.7

2005-04-18 Thread Fritz Schneider
[mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 3:38 PM To: Tomcat Users List Subject: RE: Deploying Sakai 1.5.0 with Tomcat 5.5.7 Fritz, When you ask whether I also have a deployed application at TOMCAT_HOME/webapps/sakai-dispatch, I think what you're asking is whether or not everything

deploying

2005-04-15 Thread Remo rahman
what are various ways of deploying in tomcat 5.5.4 through its manager 1)how to deploy new application(directory or WAR file located on server) on local path 2)how to deploy new application remotely plz don,t say to refer the tomcat documentation as it confuses me plz help me in easier steps as i

tomcat 5 not deploying my war

2005-04-01 Thread teknokrat
I place my war in the webapps directory. tomcat 5.5.7 creates the directory and maybe a few others but it does not complete the job. Reloading etc does not fix this. there are no error messages given. Anyone have a clue what could be going on here? thanks

RE: tomcat 5 not deploying my war

2005-04-01 Thread David Owens
] Sent: Friday, April 01, 2005 3:24 AM To: tomcat-user@jakarta.apache.org Subject: tomcat 5 not deploying my war I place my war in the webapps directory. tomcat 5.5.7 creates the directory and maybe a few others but it does not complete the job. Reloading etc does not fix this. there are no error

unexpected behaviour when hot-deploying

2005-03-29 Thread Rob van Oostrum
On our production environment, when hot-deploying WAR files, Tomcat occasionally spits out errors like this one: Mar 29, 2005 12:46:59 AM org.apache.catalina.core.StandardContext preDeregister SEVERE: error stopping LifecycleException: Manager has not yet been started

Re: changing my web app and then deploying takes a lot of time!!!

2005-03-18 Thread Bernard
Hi again, In my case, the application's WEB-INF/web.xml change does not trigger a reload although I have WatchedResourceWEB-INF/web.xml/WatchedResource in context.xml. No idea why this does not work. But a change of the application's context descriptor triggers a reload, e.g.: touch

Re: changing my web app and then deploying takes a lot of time!!!

2005-03-18 Thread Harry Mantheakis
I am currently developoing a web application and whenever I change my project (jsp file or java classes) I have to deploy and undeploy the application again. Which take a lot of time and it drives me crazy!!! Do you know how can I foce tomcat to deploy my build directory and whenever I

changing my web app and then deploying takes a lot of time!!!

2005-03-17 Thread Kostas Karadamoglou
Hi again! I am currently developoing a web application and whenever I change my project (jsp file or java classes) I have to deploy and undeploy the application again. Which take a lot of time and it drives me crazy!!! Do you know how can I foce tomcat to deploy my build directory and whenever

Re: changing my web app and then deploying takes a lot of time!!!

2005-03-17 Thread Bernard
This drives me crazy, too. I can't comment on .war file deployment directly because I am not using it. But I want to help you anyway, suggesting the approach I would take. I would forget manager for a moment. A basic servlet engine (these things have been around for 10 years or more, remember

deploying a tomcat application

2005-03-09 Thread t.n.a.
The question's probably fairly simple, so I'd be thankfull for a link or two if it's been answered before, but here's what I'd like to know... I have a tapestry application I develop on a local tomcat instance and it's my first app of that type. In a couple of days I'll have to upload it to a

(Re)deploying at development cycle

2005-02-23 Thread Ramiro Alba Queipo
Hello everybody: I am developing a web application for tomcat 5.0.28 and I created a build.xml for ant by following the guidelines explained at http://jakarta.apache.org/tomcat/tomcat-5.0-doc/manager-howto.html. What is the optimal and fastest method to redeploy the aplication again an again

Re: Deploying / Update Web Applications without deploying JSP files

2005-02-21 Thread Edson Watanabe
Dear sirs, I have to deploy a Tomcat app that has several thousands of JSP files (using Struts of course). The application will be run in Tomcat 5.0.28 under J2SDK 1.4.2_07. It's an application that will be deployed as a client application with a browser interface. The customer don't want me to

Deploying / Update Web Applications without deploying JSP files

2005-02-18 Thread Edson Watanabe
Dear sirs, I have to deploy a Tomcat app that has several thousands of JSP files (using Struts of course). It's an application that will be deployed as a client application with a browser interface. The customer don't want me to release the JSP files due to security reasons. (In fact, the customer

Deploying with Tomcat 5.5

2005-02-16 Thread boliver
Is there not a way to deploy a WAR file in Tomcat 5.5 to a new virtual host without having to use the Admin web module to add the new host element and or manually modifying the server.xml file. I can seem to find any documentation on this. I know in JBoss you can include an XML file that has

Re: Deploying with Tomcat 5.5

2005-02-16 Thread Mark Thomas
There is not a way to deploy a WAR file to a new virtual host without creating the host first. Mark [EMAIL PROTECTED] wrote: Is there not a way to deploy a WAR file in Tomcat 5.5 to a new virtual host without having to use the Admin web module to add the new host element and or manually

Re: Deploying with Tomcat 5.5

2005-02-16 Thread boliver
List tomcat-user@jakarta.apache.org cc Subject Re: Deploying with Tomcat 5.5 There is not a way to deploy a WAR file to a new virtual host without creating the host first. Mark [EMAIL PROTECTED] wrote: Is there not a way to deploy a WAR file in Tomcat 5.5 to a new virtual host without

Re: Deploying with Tomcat 5.5

2005-02-16 Thread Remy Maucherat
On Wed, 16 Feb 2005 13:40:12 -0500, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there not a way to deploy a WAR file in Tomcat 5.5 to a new virtual host without having to use the Admin web module to add the new host element and or manually modifying the server.xml file. I can seem to find

Re: Deploying with Tomcat 5.5

2005-02-16 Thread boliver
@jakarta.apache.org To Tomcat Users List tomcat-user@jakarta.apache.org cc Subject Re: Deploying with Tomcat 5.5 On Wed, 16 Feb 2005 13:40:12 -0500, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there not a way to deploy a WAR file in Tomcat 5.5 to a new virtual host without having to use

Deploying webapps in embedded environment

2005-02-09 Thread Patrick Lacson
hi All, I have a standalone application server that is using the tomcat embedded server as the web component. however, i would like to deploy multiple web applications to that embedded server without having to deploy WAR files. Is there a programatic way of doing this? There are shared jar

RE: Deploying a Servlet to Tomcat 5.0

2005-01-26 Thread Anil Philip
See http://www.coreservlets.com/Apache-Tomcat-Tutorial/#Download-Tomcat -Original Message- From: Harsha perera [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 25, 2005 12:04 AM To: tomcat-user@jakarta.apache.org Subject: Deploying a Servlet to Tomcat 5.0 Hi, I have been trying

RE: Deploying a Servlet to Tomcat 5.0

2005-01-26 Thread Ben Souther
- From: Harsha perera [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 25, 2005 12:04 AM To: tomcat-user@jakarta.apache.org Subject: Deploying a Servlet to Tomcat 5.0 Hi, I have been trying to deploy a simple servlet to Tomcat 5.0. Tomcat is installed on WIndows XP. This is what I

Deploying a Servlet to Tomcat 5.0

2005-01-24 Thread Harsha perera
/HelloServlet description The requested resource (/servlet/HelloServlet) is not available. Please advise on how I should be deploying this simple servlet. The servlet is code is given below: import java.io.*; import javax.servlet.*; import javax.servlet.http.*; /** Simple servlet used to test server

Re: Deploying a Servlet to Tomcat 5.0

2005-01-24 Thread Antony Paul
/HelloServlet) is not available. Please advise on how I should be deploying this simple servlet. The servlet is code is given below: import java.io.*; import javax.servlet.*; import javax.servlet.http.*; /** Simple servlet used to test server. * P * Taken from Core Servlets

permissions error deploying struts application

2005-01-21 Thread Adam Jenkins
Hi All, I'm getting a weird error deploying a web-app with taglibs in tomcat 5.5.4. When I try to access the root of the directory, it works ok (no problems listing files, hitting welcome page etc. However it drops the following into the catalina logs. I've given everyone rwx access

Re: Want to know better way of deploying

2005-01-18 Thread Eric VERGNAUD
Yes I also encounter this problem with Tomcat 5.0.28 on a Wintel box. However it did not occur with 5.0.18. Neither does it occur on MacOS. Looks like something was broken recently, because it's working with 5.0.18 on another Wintel box which I have not upgraded. I believe Tomcat is unable to

Re: Deploying an application with its own xml file

2005-01-14 Thread Paul Taylor
] Sent: January 13, 2005 4:22 AM To: Tomcat Users List Subject: Re: Deploying an application with its own xml file Ok, it is working on my test (Windows) environment. But with same war deploying it to my Live environment(Linux) results in it creating myapp.xml as a directory rather than a file

RE: Deploying an application with its own xml file

2005-01-14 Thread Phillip Qin
] Sent: January 14, 2005 3:14 AM To: Tomcat Users List Subject: Re: Deploying an application with its own xml file In what way, do you mean path seperator or something else ? Within my context.xml im using forward slash (UNIX notation) for both and its the Windows one that is working Phillip Qin

Re: Deploying an application with its own xml file

2005-01-13 Thread Paul Taylor
Ok, it is working on my test (Windows) environment. But with same war deploying it to my Live environment(Linux) results in it creating myapp.xml as a directory rather than a file ! Ive doubled checked this and the behaviour is constant, anyone ever sdeen this? Paul Taylor wrote: Thanks now

RE: Deploying an application with its own xml file

2005-01-13 Thread Phillip Qin
Windows and linux use different url. -Original Message- From: Paul Taylor [mailto:[EMAIL PROTECTED] Sent: January 13, 2005 4:22 AM To: Tomcat Users List Subject: Re: Deploying an application with its own xml file Ok, it is working on my test (Windows) environment. But with same war

Deploying an application with its own xml file

2005-01-12 Thread Paul Taylor
I have an application myapp.war and a corresponding xml file myapp.xml. Previously I was copying myapp.xml into tomcat/conf/catalina/localhost and manually unpacking my war. Now I realised I can put the war into tomcat/webapps and it will automatically deploy, but I then have to shutdown server

Re: Deploying an application with its own xml file

2005-01-12 Thread Parsons Technical Services
: Wednesday, January 12, 2005 4:46 AM Subject: Deploying an application with its own xml file I have an application myapp.war and a corresponding xml file myapp.xml. Previously I was copying myapp.xml into tomcat/conf/catalina/localhost and manually unpacking my war. Now I realised I can put

RE: Deploying an application with its own xml file

2005-01-12 Thread Phillip Qin
Sotre your context.xml into META-INF. Pack your webapp as war. Then let catalina-ant task or Tomcat Manager to deploy your war. -Original Message- From: Paul Taylor [mailto:[EMAIL PROTECTED] Sent: January 12, 2005 4:47 AM To: Tomcat Users List Subject: Deploying an application with its

Re: Deploying an application with its own xml file

2005-01-12 Thread Paul Taylor
Taylor [mailto:[EMAIL PROTECTED] Sent: January 12, 2005 4:47 AM To: Tomcat Users List Subject: Deploying an application with its own xml file I have an application myapp.war and a corresponding xml file myapp.xml. Previously I was copying myapp.xml into tomcat/conf/catalina/localhost and manually

RE: Deploying jsps

2004-12-23 Thread Abhay Hiwarkar
Doesn't any body have a detailed procedure to deploy compiled jsps with Tomcat4.0 ? Abhay -Original Message- From: Abhay Hiwarkar [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:33 To: 'Tomcat Users List' Subject: Deploying jsps Hi, I am week in deploying war with Tomcat4

RE: Want to know better way of deploying

2004-12-23 Thread Manisha Sathe
autoDeploy=true xmlValidation=false xmlNamespaceAware=false cheers Manish -Original Message- From: Manisha Sathe [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:50 To: Tomcat Users List Subject: RE: Want to know better way of deploying Thanks all. I am on Windows but Tomcat version is 5.0

RE: Want to know better way of deploying

2004-12-23 Thread Manisha Sathe
: Want to know better way of deploying Thanks all. I am on Windows but Tomcat version is 5.0. So meaning no other solution ? regards Manisha Abhay Hiwarkar wrote: Manisha, Earlier versions of Tomcat lock the file and you can not modify the same while Tomcat is running. Which ver are you running

RES: Deploying jsps

2004-12-23 Thread Edson Alves Pereira
dezembro de 2004 5:36 Para: 'Tomcat Users List' Assunto: RE: Deploying jsps Doesn't any body have a detailed procedure to deploy compiled jsps with Tomcat4.0 ? Abhay -Original Message- From: Abhay Hiwarkar [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:33 To: 'Tomcat Users List

Re: Want to know better way of deploying

2004-12-23 Thread Isaac Sparrow
:21 PM Subject: Want to know better way of deploying I am using ant to create war file. Then i undeploy previous version and try to deploy new version. But when i try to do this it says FAIL - War file strutstest.war already exists on server Inside /webapp - previous uploaded war

Re: Deploying jsps

2004-12-23 Thread M.Hockings
Message- From: Abhay Hiwarkar [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:33 To: 'Tomcat Users List' Subject: Deploying jsps Hi, I am week in deploying war with Tomcat4 on Windows. The war contains only the class files generated from JSPs. I am not able to access any JSP through http

Want to know better way of deploying

2004-12-22 Thread Manisha Sathe
I am using ant to create war file. Then i undeploy previous version and try to deploy new version. But when i try to do this it says FAIL - War file strutstest.war already exists on server Inside /webapp - previous uploaded war file is still present. I can not delete just like that as it

Re: Want to know better way of deploying

2004-12-22 Thread Tennessee Leeuwenburg
What version of tomcat are you using? I am using ant to create war file. Then i undeploy previous version and try to deploy new version. But when i try to do this it says FAIL - War file strutstest.war already exists on server Inside /webapp - previous uploaded war file is still present. I can

Re: Want to know better way of deploying

2004-12-22 Thread Daniel Watrous
, December 22, 2004 10:21 PM Subject: Want to know better way of deploying I am using ant to create war file. Then i undeploy previous version and try to deploy new version. But when i try to do this it says FAIL - War file strutstest.war already exists on server Inside /webapp - previous

RE: Want to know better way of deploying

2004-12-22 Thread Goel, Manish Kumar
Daniel, On Linux running application are deleted it's not bug I guess. Manish -Original Message- From: Daniel Watrous [mailto:[EMAIL PROTECTED] Sent: Thursday, December 23, 2004 10:55 AM To: Tomcat Users List Subject: Re: Want to know better way of deploying Manisha, I have also had

Deploying jsps

2004-12-22 Thread Abhay Hiwarkar
Hi, I am week in deploying war with Tomcat4 on Windows. The war contains only the class files generated from JSPs. I am not able to access any JSP through http://localhost:8080/myProj/client.jsp The war file contains the web.xml with mapping of all servlets to jsps I will appriciate your help

RE: Want to know better way of deploying

2004-12-22 Thread Abhay Hiwarkar
to know better way of deploying Daniel, On Linux running application are deleted it's not bug I guess. Manish -Original Message- From: Daniel Watrous [mailto:[EMAIL PROTECTED] Sent: Thursday, December 23, 2004 10:55 AM To: Tomcat Users List Subject: Re: Want to know better way of deploying

RE: Want to know better way of deploying

2004-12-22 Thread Manisha Sathe
-Original Message- From: Goel, Manish Kumar [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:29 To: Tomcat Users List Subject: RE: Want to know better way of deploying Daniel, On Linux running application are deleted it's not bug I guess. Manish -Original Message- From: Daniel

RE: Want to know better way of deploying

2004-12-22 Thread Abhay Hiwarkar
better way of deploying Thanks all. I am on Windows but Tomcat version is 5.0. So meaning no other solution ? regards Manisha Abhay Hiwarkar [EMAIL PROTECTED] wrote: Manisha, Earlier versions of Tomcat lock the file and you can not modify the same while Tomcat is running. Which ver are you

RE: Want to know better way of deploying

2004-12-22 Thread Goel, Manish Kumar
Manish -Original Message- From: Manisha Sathe [mailto:[EMAIL PROTECTED] Sent: Thu, 23 Dec 2004 07:50 To: Tomcat Users List Subject: RE: Want to know better way of deploying Thanks all. I am on Windows but Tomcat version is 5.0. So meaning no other solution ? regards Manisha Abhay

Re: Want to know better way of deploying

2004-12-22 Thread Andreas Vombach
For some reason autodeploy does not work anymore when I start using jdbc pooling. (see my autodeploy thread) Host name=localhost appBase=webapps unpackWARs=true autoDeploy=true xmlValidation=false xmlNamespaceAware=false Context displayName=myapp docBase=myapp path=/myapp

war not deploying

2004-12-13 Thread Cumbers
Hey guys I am trying to use ant with cactus to deploy my app to Tomcat and then test. I can run the ant tasks on the examples, i tested the servlet example that comes with the cactus download and it creates its own Tomcat instance, puts the cactified war file under the webapps dir and, most

RE: war not deploying

2004-12-13 Thread Phillip Qin
Have you created /tmp/cactus/tomcat5x/webapps/? -Original Message- From: Cumbers [mailto:[EMAIL PROTECTED] Sent: December 13, 2004 10:38 AM To: Tomcat Users List Subject: war not deploying Hey guys I am trying to use ant with cactus to deploy my app to Tomcat and then test. I can run

RE: war not deploying

2004-12-13 Thread Phillip Qin
Your context.xml is fine. Check your cactus. -Original Message- From: Cumbers [mailto:[EMAIL PROTECTED] Sent: December 13, 2004 11:10 AM To: Tomcat Users List Subject: Re: war not deploying Here is the error message: INFO: Processing Context configuration file URL file:/tmp/cactus

Re: war not deploying

2004-12-13 Thread Cumbers
not deploying Hey Yeah that gets created, and in there is the war file. I am unsure how much info to give out, as this could be a cactus problem, I am still hacking at it and trawling google searches! Cheers Rich Phillip Qin wrote: Have you created /tmp/cactus/tomcat5x/webapps/? -Original Message

Re: war not deploying

2004-12-13 Thread Cumbers
- From: Cumbers [mailto:[EMAIL PROTECTED] Sent: December 13, 2004 10:38 AM To: Tomcat Users List Subject: war not deploying Hey guys I am trying to use ant with cactus to deploy my app to Tomcat and then test. I can run the ant tasks on the examples, i tested the servlet example that comes

RE: war not deploying

2004-12-13 Thread Phillip Qin
What about the permission? -Original Message- From: Cumbers [mailto:[EMAIL PROTECTED] Sent: December 13, 2004 10:57 AM To: Tomcat Users List Subject: Re: war not deploying Hey Yeah that gets created, and in there is the war file. I am unsure how much info to give out, as this could

Re: war not deploying

2004-12-13 Thread Cumbers
not deploying Hey Yeah that gets created, and in there is the war file. I am unsure how much info to give out, as this could be a cactus problem, I am still hacking at it and trawling google searches! Cheers Rich Phillip Qin wrote: Have you created /tmp/cactus/tomcat5x/webapps/? -Original

Re: war not deploying

2004-12-13 Thread Cumbers
? -Original Message- From: Cumbers [mailto:[EMAIL PROTECTED] Sent: December 13, 2004 10:57 AM To: Tomcat Users List Subject: Re: war not deploying Hey Yeah that gets created, and in there is the war file. I am unsure how much info to give out, as this could be a cactus problem, I am still

Re: war not deploying

2004-12-13 Thread Cumbers
: December 13, 2004 10:57 AM To: Tomcat Users List Subject: Re: war not deploying Hey Yeah that gets created, and in there is the war file. I am unsure how much info to give out, as this could be a cactus problem, I am still hacking at it and trawling google searches! Cheers Rich Phillip Qin wrote: Have

RE: war not deploying

2004-12-13 Thread Phillip Qin
Have you checked your cactus setting? -Original Message- From: Cumbers [mailto:[EMAIL PROTECTED] Sent: December 13, 2004 11:08 AM To: Tomcat Users List Subject: Re: war not deploying I have also checked that auto deploy and unpack wars are set to true. What I do not understand

RE: war not deploying

2004-12-13 Thread Phillip Qin
I have never used cactus before. Check if cactus has any JNDI pooling resource and link it in your app's context.xml. -Original Message- From: Cumbers [mailto:[EMAIL PROTECTED] Sent: December 13, 2004 11:20 AM To: Tomcat Users List Subject: Re: war not deploying Ok found the problem

5.5.4 problems deploying with context descriptors

2004-12-04 Thread hanasaki
Just pulled down 5.5.4 to upgrade from 5.0.28 The xml descriptors and hostname directories have been copied from 5.0.28 to 5.5.4 but the contexts do not appear to be deployed. Everything ran fine on 5.0.28 ie: under/Catalina/myhost/descriptor1.xml Is this a known problem? Has the config

RE: 5.5.4 problems deploying with context descriptors

2004-12-04 Thread Allistair Crossley
: Subject: 5.5.4 problems deploying with context descriptors Just pulled down 5.5.4 to upgrade from 5.0.28 The xml descriptors and hostname directories have been copied from 5.0.28 to 5.5.4 but the contexts do not appear to be deployed

RE: 5.5.4 problems deploying with context descriptors

2004-12-04 Thread Allistair Crossley
: Subject: 5.5.4 problems deploying with context descriptors Just pulled down 5.5.4 to upgrade from 5.0.28 The xml descriptors and hostname directories have been copied from 5.0.28 to 5.5.4 but the contexts do not appear to be deployed

Re: 5.5.4 problems deploying with context descriptors

2004-12-04 Thread hanasaki
: Subject: 5.5.4 problems deploying with context descriptors Just pulled down 5.5.4 to upgrade from 5.0.28 The xml descriptors and hostname directories have been copied from 5.0.28 to 5.5.4 but the contexts do not appear to be deployed. Everything ran fine

RE: 5.5.4 problems deploying with context descriptors

2004-12-04 Thread Allistair Crossley
... post a little so we can see. Allistair. -Original Message- From: hanasaki [mailto:[EMAIL PROTECTED] Sent: Sat 04/12/2004 22:30 To: Tomcat Users List Cc: Subject: Re: 5.5.4 problems deploying with context descriptors

  1   2   3   4   5   >