Re: deployment questions

2008-04-01 Thread quikpak
Sent: Thursday, March 27, 2008 8:36 AM Subject: RE: deployment questions From: Kimberly Begley [mailto:[EMAIL PROTECTED] Subject: deployment questions 1) make a war file of my web app directory Yes. 2) add a context entry to the server.xml file on the remote server Unless you're dep

RE: deployment questions

2008-03-26 Thread Caldarale, Charles R
> From: Shreekanta Prasad [mailto:[EMAIL PROTECTED] > Subject: RE: deployment questions > > I am using tomacat5.5,eventhough autoDeploy option is "true" > we have to restart the server. I just retested this on my WinXP box with 5.5.25, and dropping an updated .war

RE: deployment questions

2008-03-26 Thread Shreekanta Prasad
To: Tomcat Users List Subject: Re: deployment questions Great thanks! and sorry about that its tomcat5. On Thu, Mar 27, 2008 at 1:06 PM, Caldarale, Charles R < [EMAIL PROTECTED]> wrote: > > From: Kimberly Begley [mailto:[EMAIL PROTECTED] > > Subject: deployment questions &g

Re: deployment questions

2008-03-26 Thread Kimberly Begley
Great thanks! and sorry about that its tomcat5. On Thu, Mar 27, 2008 at 1:06 PM, Caldarale, Charles R < [EMAIL PROTECTED]> wrote: > > From: Kimberly Begley [mailto:[EMAIL PROTECTED] > > Subject: deployment questions > > > > 1) make a war file of my web app dir

RE: deployment questions

2008-03-26 Thread Caldarale, Charles R
> From: Kimberly Begley [mailto:[EMAIL PROTECTED] > Subject: deployment questions > > 1) make a war file of my web app directory Yes. > 2) add a context entry to the server.xml file on the remote > server Unless you're deploying on an ancient version of Tomcat (you d

deployment questions

2008-03-26 Thread Kimberly Begley
Hi, I've been devloping a web app on a virtual machine on my computer and I want to move it over to remote server. I understand that I 1) make a war file of my web app directory 2) add a context entry to the server.xml file on the remote server (Q1: where in the server.xml file do I add this entry

Re: Project Deployment Questions

2007-12-18 Thread Richard Reyes
Thanks! Len Popp wrote: On Dec 17, 2007 2:52 PM, Richard Reyes <[EMAIL PROTECTED]> wrote: Hi Len, Please see inline... Len Popp wrote: There are a couple of ways to handle this. 1. Replicate the uploaded images to all the Tomcat servers. This isn't hard if the image directories can

Re: Project Deployment Questions

2007-12-17 Thread Len Popp
On Dec 17, 2007 2:52 PM, Richard Reyes <[EMAIL PROTECTED]> wrote: > Hi Len, > > Please see inline... > > Len Popp wrote: > > There are a couple of ways to handle this. > > > > 1. Replicate the uploaded images to all the Tomcat servers. This isn't > > hard if the image directories can be shared on t

Re: Project Deployment Questions

2007-12-17 Thread Richard Reyes
Hi Len, Please see inline... Len Popp wrote: There are a couple of ways to handle this. 1. Replicate the uploaded images to all the Tomcat servers. This isn't hard if the image directories can be shared on the server LAN. Not much more complicated than what you're doing now. Like a cron tas

Re: Project Deployment Questions

2007-12-17 Thread Len Popp
There are a couple of ways to handle this. 1. Replicate the uploaded images to all the Tomcat servers. This isn't hard if the image directories can be shared on the server LAN. Not much more complicated than what you're doing now. 2. All Tomcats save the uploaded images in a single location that

Project Deployment Questions

2007-12-16 Thread Richard G. Reyes
Hi All, We have created this web application where users can upload images and display it selectively on the other parts of the system. For performance reasons we have saved the said images into the filesystem ( e. g. $CATALINA_HOME/webapps/ROOT/images/uploadedimages/bird01.jpg). At this point th

Re: hot deployment questions

2006-08-28 Thread Mikolaj Rydzewski
Hammad Sophie wrote: I wasn't aware of SessionManager. However, I'm not sure it will help. Generally we are installing patches on a live server that has transactions/activity going on while we patch. I'd like to know if its possible for us to do a hot patch without causing any disruption to any u

Re: hot deployment questions

2006-08-28 Thread Andrés González
Sent: Monday, August 28, 2006 7:11 PM To: Tomcat Users List Subject: Re: hot deployment questions Only one question: why don't you want the webapp to be reloaded? You can save your sessions easily using the Session Manager (just insert the following in your context.xml: ): http://tomcat.a

RE: hot deployment questions

2006-08-28 Thread Hammad Sophie
f we reload, it will cause users to lose data that they are working on. Hammad. -Original Message- From: Andrés González [mailto:[EMAIL PROTECTED] Sent: Monday, August 28, 2006 7:11 PM To: Tomcat Users List Subject: Re: hot deployment questions Only one question: why don't you w

Re: hot deployment questions

2006-08-28 Thread Andrés González
Only one question: why don't you want the webapp to be reloaded? You can save your sessions easily using the Session Manager (just insert the following in your context.xml: ): http://tomcat.apache.org/tomcat-5.0-doc/config/manager.html On 8/28/06, Hammad Sophie <[EMAIL PROTECTED]> wrote: H

hot deployment questions

2006-08-28 Thread Hammad Sophie
Hello. I've searched through and read a number of messages related to 'hot deployment'. All of them deal with hot deploying the ENTIRE webapp, not just particular classes in my webapp. We use tomcat as the application server/container for our application. We use a single production server runnin