Deploying on a Remote Tomcat Servers

2008-01-10 Thread Richard G. Reyes
Hi Guys, May I ask how you guys deploy on a remote tomcat servers? Is there a way to automate deployment? Regards, Richard - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Deploying on a Remote Tomcat Servers

2008-01-10 Thread david delbecq
There are several way to automate it. One is to install on that remote tomcat, the tomcat manager webapp, which let you deploy war. There is also a ant task that can be used with it to submit the compiled war file to that manager. Another is to install lambdaprobe, which can also do

Re: Deploying on a Remote Tomcat Servers

2008-01-10 Thread Jacob Rhoden
Richard G. Reyes wrote: May I ask how you guys deploy on a remote tomcat servers? Is there a way to automate deployment? The most common way is to use an ant build file. One task to build the war, and another task to deploy it. Its quite simple once you know how. I don't have time to write

Re: Deploying on a Remote Tomcat Servers

2008-01-10 Thread Richard Reyes
Thanks. david delbecq wrote: There are several way to automate it. One is to install on that remote tomcat, the tomcat manager webapp, which let you deploy war. There is also a ant task that can be used with it to submit the compiled war file to that manager. Another is to install

RE: Deploying on a Remote Tomcat Servers

2008-01-10 Thread M T
Hi Richard, Depending on your specific requirements, you may consider NGASI AppServer Manager. The website is http://www.ngasi.com Richard G. Reyes wrote: Hi Guys, May I ask how you guys deploy on a remote tomcat servers? Is there a way to