RE: multi-connector capability for HTTPS in Tomcat

2007-12-26 Thread Hitesh Raghav
Thank you very much Mark for kind help.

I tried. It works fine.

Regards,
-Hitesh


-Original Message-
From: Mark Thomas [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 25, 2007 9:24 PM
To: Tomcat Users List
Subject: Re: multi-connector capability for HTTPS in Tomcat

Hitesh Raghav wrote:
> Hi Mark,
> 
> How it can be configured for each webapp?
> Is there any documentation about it? Could you please share me 
> appropriate URL about it.

http://tomcat.apache.org/tomcat-6.0-doc/config/index.html

Mark

-
To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,
e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: multi-connector capability for HTTPS in Tomcat

2007-12-25 Thread Mark Thomas
Hitesh Raghav wrote:
> Hi Mark,
> 
> How it can be configured for each webapp?
> Is there any documentation about it? Could you please share me
> appropriate URL about it.

http://tomcat.apache.org/tomcat-6.0-doc/config/index.html

Mark

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: multi-connector capability for HTTPS in Tomcat

2007-12-25 Thread Hitesh Raghav
Hi Mark,

How it can be configured for each webapp?
Is there any documentation about it? Could you please share me
appropriate URL about it.

Regards,
-Hitesh
 

-Original Message-
From: Mark Thomas [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 25, 2007 12:43 AM
To: Tomcat Users List
Subject: Re: multi-connector capability for HTTPS in Tomcat

Hitesh Raghav wrote:
> Hi Mark,
> 
> I'm little confused about it.
> 
> Let assume my m/c ip is: 10.212.85.8
> SSL connector are configured on ports: 8443 & 8553
> 
> I need to deploy one web app (myapp01.war) on port 8443 and another on

> web app (myapp02.war) on 8553. Is there any way to configure to access

> these web apps as:
> https://10.212.85.8:8443/myapp01/
> and
> https://10.212.85.8:8553/myapp02/

If you want each port to only allow access to a single webapp then you
would need to configure a service (with a connector, engine, host etc)
for each webapp.

Mark


-
To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,
e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: multi-connector capability for HTTPS in Tomcat

2007-12-24 Thread Mark Thomas
Hitesh Raghav wrote:
> Hi Mark,
> 
> I'm little confused about it.
> 
> Let assume my m/c ip is: 10.212.85.8
> SSL connector are configured on ports: 8443 & 8553
> 
> I need to deploy one web app (myapp01.war) on port 8443 and another on
> web app (myapp02.war) on 8553. Is there any way to configure to access
> these web apps as:
> https://10.212.85.8:8443/myapp01/
> and
> https://10.212.85.8:8553/myapp02/

If you want each port to only allow access to a single webapp then you
would need to configure a service (with a connector, engine, host etc) for
each webapp.

Mark


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: multi-connector capability for HTTPS in Tomcat

2007-12-24 Thread Hitesh Raghav
Hi Mark,

I'm little confused about it.

Let assume my m/c ip is: 10.212.85.8
SSL connector are configured on ports: 8443 & 8553

I need to deploy one web app (myapp01.war) on port 8443 and another on
web app (myapp02.war) on 8553. Is there any way to configure to access
these web apps as:
https://10.212.85.8:8443/myapp01/
and
https://10.212.85.8:8553/myapp02/

Please find enclosed my conf file (i.e. server.xml) for reference.

Please let me know in case any other details are needed.

Thanks,
-Hitesh
 

-Original Message-
From: Mark Thomas [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 24, 2007 7:41 PM
To: Tomcat Users List
Subject: Re: multi-connector capability for HTTPS in Tomcat

Hitesh Raghav wrote:
> Hi,
>  
> Does Tomcat support multi-connector capabilities for HTTPS?

Yes.

> "Edit The Tomcat Configuration File" section in Tomcat's User-Guide 
> (http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html
> <http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html> ) gives 
> impression that Tomcat could be configured using multiple connectors 
> to support HTTPS protocols on multiple ports simultaneously.

You can have multiple SSL connectors. Whilst connectors can listen on
multiple addresses, there can only be one connector listening on each
address/port combination.

Mark

-
To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe,
e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]










  
  
  
  
  

  
  







  

  

  
  






	
	





		











 
 



  
  

  

  
  

  
  

  

  

  

  

  
  

 















  



  


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: multi-connector capability for HTTPS in Tomcat

2007-12-24 Thread Mark Thomas
Hitesh Raghav wrote:
> Hi,
>  
> Does Tomcat support multi-connector capabilities for HTTPS?

Yes.

> "Edit The Tomcat Configuration File" section in Tomcat's User-Guide
> (http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html
>  ) gives
> impression that Tomcat could be configured using multiple connectors to
> support HTTPS protocols on multiple ports simultaneously.

You can have multiple SSL connectors. Whilst connectors can listen on
multiple addresses, there can only be one connector listening on each
address/port combination.

Mark

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



multi-connector capability for HTTPS in Tomcat

2007-12-24 Thread Hitesh Raghav
Hi,
 
Does Tomcat support multi-connector capabilities for HTTPS?
 
"Edit The Tomcat Configuration File" section in Tomcat's User-Guide
(http://tomcat.apache.org/tomcat-5.5-doc/ssl-howto.html
 ) gives
impression that Tomcat could be configured using multiple connectors to
support HTTPS protocols on multiple ports simultaneously.
 
Your expert advise/suggestion are highly appreciated.
 
 
Thanks,
-Hitesh