Re: Connector problem

2008-09-22 Thread Mark Thomas
Mathias P.W Nilsson wrote: Hi! I have this setup in my server.xml Connector port=443 protocol=HTTP/1.1 SSLEnabled=true maxThreads=150 scheme=https secure=true clientAuth=false sslProtocol=TLS keystoreFile=c:/keystore keystorePass=pass / Host name=localhost

Re: Connector problem

2008-09-22 Thread Mathias P.W Nilsson
OK! How would that setup look like? Let's say I want a user to access the website in this fashion https://www.domain1.com ( SSL from thawte ) https://www.domain2.com ( SSL from thawte ) https://www.domain1.se ( SSL from thawte ) What would I have to do to make this work? I only have one

RE: Connector problem

2008-09-22 Thread Peter Crowther
From: Mathias P.W Nilsson [mailto:[EMAIL PROTECTED] Let's say I want a user to access the website in this fashion https://www.domain1.com ( SSL from thawte ) https://www.domain2.com ( SSL from thawte ) https://www.domain1.se ( SSL from thawte ) What would I have to do to make this work? I

RE: Connector problem

2008-09-22 Thread Mathias P.W Nilsson
Ok thanks! The problem is that I need the host to run under the same tomcat instance. When a user access www.domain1.se then I read the HTTPServletRequest host name to see what site he/she want's to access. This is because I do not want 3 hibernate access to the same database because that won't

RE: Connector problem

2008-09-22 Thread Peter Crowther
From: Mathias P.W Nilsson [mailto:[EMAIL PROTECTED] When a user access www.domain1.se then I read the HTTPServletRequest host name to see what site he/she want's to access. This is because I do not want 3 hibernate access to the same database because that won't work. I would get a lot of

Re: Connector problem

2008-09-22 Thread Jörg Fröber
Am 22.09.2008, 12:17 Uhr, schrieb Peter Crowther [EMAIL PROTECTED]: From: Mathias P.W Nilsson [mailto:[EMAIL PROTECTED] Let's say I want a user to access the website in this fashion https://www.domain1.com ( SSL from thawte ) https://www.domain2.com ( SSL from thawte ) https://www.domain1.se

RE: Connector problem

2008-09-22 Thread Peter Crowther
From: Jörg Fröber [mailto:[EMAIL PROTECTED] Sorry to kind of hijack this thread, but would it be possible to use one of the certificates linked below with tomcat, when only 1 IP and 1 SSL-Connector is used for different Host elements?

Re: Connector problem

2006-01-30 Thread Bill Barker
The AJP/1.3 Connector uses the scheme that is sent from IIS/Httpd/SunOne. The scheme and isSecure on the Connector ./ is ignored. I suppose that it wouldn't be too hard to add a believeMe=true attribute to the Connector tag to handle your case. If you feel strongly about it, open a BZ