RE: Application Deployment on Tomcat 5.1

2004-10-27 Thread Shapira, Yoav

Hi,
There's no such thing as Tomcat 5.1.

Yoav Shapira http://www.yoavshapira.com


-Original Message-
From: Suryaanil Lingamallu [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 26, 2004 6:54 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Application Deployment on Tomcat 5.1

Hi,

  I need some help on deploying applications on Tomcat 5.1. I installed
tomcat 5.1 on Windows 2003 Server in C:\Tomcat5.1\

I could create applications under CATALINA_HOME/webapps directory.

I need to create a custom deployment directory which is not under
CATALINA_HOME/webapps directory. Let's say that I need to create
under
C:\WebDir\.

My questions are
1. Will it possible to do this deployment?
2. If it is possible, what is the procedure?

Please share with me your thoughts.

Thanks,
Surya



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Application Deployment on Tomcat 5.1

2004-10-26 Thread Suryaanil Lingamallu
Hi,

  I need some help on deploying applications on Tomcat 5.1. I installed
tomcat 5.1 on Windows 2003 Server in C:\Tomcat5.1\

I could create applications under CATALINA_HOME/webapps directory. 

I need to create a custom deployment directory which is not under
CATALINA_HOME/webapps directory. Let's say that I need to create under
C:\WebDir\.

My questions are 
1.  Will it possible to do this deployment?
2.  If it is possible, what is the procedure?

Please share with me your thoughts.

Thanks,
Surya


Re: Application Deployment on Tomcat 5.1

2004-10-26 Thread e-Denton Subscriber
I would change appBase in server.xml to pint to WebDir. Then, create a
context for each app with a URI relative to that base. Something like this:

Host name=localhost
  debug=0
  appBase=C:/WebDir

and

Context displayName=myApp1
 path=
 docBase=myApp1
...
Context displayName=myApp2
 path=/myApp1
 docBase=myApp1


- Original Message - 
From: Suryaanil Lingamallu [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, October 26, 2004 5:53 PM
Subject: Application Deployment on Tomcat 5.1


 Hi,

   I need some help on deploying applications on Tomcat 5.1. I installed
 tomcat 5.1 on Windows 2003 Server in C:\Tomcat5.1\

 I could create applications under CATALINA_HOME/webapps directory.

 I need to create a custom deployment directory which is not under
 CATALINA_HOME/webapps directory. Let's say that I need to create under
 C:\WebDir\.

 My questions are
 1. Will it possible to do this deployment?
 2. If it is possible, what is the procedure?

 Please share with me your thoughts.

 Thanks,
 Surya



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Application Deployment on Tomcat 5.1

2004-10-26 Thread Ben Souther
Hello,

Yes, you can do that and there are several ways you can go about it.
This link goes over all of them.
http://jakarta.apache.org/tomcat/tomcat-5.0-doc/deployer-howto.html



On Tue, 2004-10-26 at 18:53, Suryaanil Lingamallu wrote:
 Hi,
 
   I need some help on deploying applications on Tomcat 5.1. I installed
 tomcat 5.1 on Windows 2003 Server in C:\Tomcat5.1\
 
 I could create applications under CATALINA_HOME/webapps directory. 
 
 I need to create a custom deployment directory which is not under
 CATALINA_HOME/webapps directory. Let's say that I need to create under
 C:\WebDir\.
 
 My questions are 
 1.Will it possible to do this deployment?
 2.If it is possible, what is the procedure?
 
 Please share with me your thoughts.
 
 Thanks,
 Surya


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]