Re: How to configure certificate file (*.cer) in Tomcat 6

2012-01-29 Thread Geet Chandra
My requirements is how to configure *.cer in Tomcat's server.xml file. You mean you want to set up a connector that uses SSL? - Yes Actually I don't want to use "keytool -import" command to import the *.cer file into *.keystore file. Any particular reason for your preference? - The customer has

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
John Renne wrote: On Jan 29, 2012, at 1:27 PM, André Warnier wrote: Sorry to appear to pounce on you, but putting a element in server.xml is discouraged, see here : http://tomcat.apache.org/tomcat-6.0-doc/config/context.html#Introduction No offense taken I am not myself an expert, so treat

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread John Renne
On Jan 29, 2012, at 1:27 PM, André Warnier wrote: > > Sorry to appear to pounce on you, but putting a element in > server.xml is discouraged, see here : > http://tomcat.apache.org/tomcat-6.0-doc/config/context.html#Introduction > No offense taken > I am not myself an expert, so treat this wi

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Mark Thomas
On 29/01/2012 11:06, Pid wrote: > On 29/01/2012 03:42, Caldarale, Charles R wrote: >>> From: Dean Del Ponte [mailto:dean.delpo...@gmail.com] Subject: >>> Tomcat 6 - How to make an application available at >>> www.mydomain.com >> >>> How can I make this application available at >>> "http://www.mydo

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
John Renne wrote: On Jan 29, 2012, at 4:35 AM, Dean Del Ponte wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as "myApplication" and it is available at "http://www.mydomain.com/myApplication";. How can I make this application available at "http://www.mydoma

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
> Thomas Rohde wrote: >> >> That is a good point. I will change my configuration to >> >>JkMount /myApplication/* tomcat >> > Actually, you need 2 lines to cover all : > > >JkMount /myApplication tomcat # for the index ? > >JkMount /myApplication/* tomcat# for the res

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread John Renne
On Jan 29, 2012, at 4:35 AM, Dean Del Ponte wrote: > I'm running tomcat 6 behind apache. > > I currently have an application deployed as "myApplication" and it is > available at "http://www.mydomain.com/myApplication";. > > How can I make this application available at "http://www.mydomain.com";

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
Thomas Rohde wrote: That is a good point. I will change my configuration to JkMount /myApplication/* tomcat Actually, you need 2 lines to cover all : >JkMount /myApplication tomcat # for the index ? >JkMount /myApplication/* tomcat# for the rest Or you can use th

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
> André Warnier wrote: >> Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as "myApplication" and it is available at "http://www.mydomain.com/myApplication";. How can I make this application available at "http://www.mydom

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Pid
On 29/01/2012 03:42, Caldarale, Charles R wrote: >> From: Dean Del Ponte [mailto:dean.delpo...@gmail.com] >> Subject: Tomcat 6 - How to make an application available at www.mydomain.com > >> How can I make this application available at "http://www.mydomain.com"; >> without deploying it as ROOT.wa

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Pid
On 29/01/2012 10:46, Borut Hadžialić wrote: > Hi, > > the best way is to deploy your application to run inside tomcat > without a context path - eg. to be available at http://localhost:8080/ > instead of http://localhost:8080/myApplication and use your apache > reverse proxying / virtual host as i

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
> André Warnier wrote: >> Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as "myApplication" and it is available at "http://www.mydomain.com/myApplication";. How can I make this application available at "http://www.mydom

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
André Warnier wrote: Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as "myApplication" and it is available at "http://www.mydomain.com/myApplication";. How can I make this application available at "http://www.mydomain.com"; without deploying it

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread André Warnier
Thomas Rohde wrote: I'm running tomcat 6 behind apache. I currently have an application deployed as "myApplication" and it is available at "http://www.mydomain.com/myApplication";. How can I make this application available at "http://www.mydomain.com"; without deploying it as ROOT.war? My serv

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Borut Hadžialić
Just a small correction: 1. Make a file called ${catalina.base}/conf/Catalina/localhost/ROOT.xml that contains: instead of 1. Make a file called ${catalina.base}/conf/Catalina/localhost.ROOT.xml that contains: On 1/29/12, Borut Hadžialić wrote: > Hi, > > the best way is to deploy your applicat

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Borut Hadžialić
Hi, the best way is to deploy your application to run inside tomcat without a context path - eg. to be available at http://localhost:8080/ instead of http://localhost:8080/myApplication and use your apache reverse proxying / virtual host as it is. Trying to strip application context in virtual ho

Re: Tomcat 6 - How to make an application available at www.mydomain.com

2012-01-29 Thread Thomas Rohde
> I'm running tomcat 6 behind apache. > > I currently have an application deployed as "myApplication" and it is > available at "http://www.mydomain.com/myApplication";. > > How can I make this application available at "http://www.mydomain.com"; > without deploying it as ROOT.war? > > My server is r