Re: apache-tomcat ssl doc download error in IE

2004-02-10 Thread Mark W. Webb
This fix will only work if you have apache using the mod_headers module. I do not have that module installed on my version of apache, so I am not sure if there is any other work around. Do you have any other ideas? I am quickly running out of ideas myself. thank you. Daniel wrote: Hi, I

Re: apache-tomcat ssl doc download error in IE

2004-02-05 Thread Mark W. Webb
I am seeing a very similar problem with Tomcat 4.1.24 and Apache over SSL on Solaris 9. I am using Tomcat4.1.24, JDK 1.4.2 Apache 2.0.48(mod_ssl, mod_jk), OpenSSL 0.9.7c. Everything compiled from source except JDK. Hi, I'm really stumped and hope someone can provide insight :( We got a

Re: apache-tomcat ssl doc download error in IE

2004-02-05 Thread Daniel
Hi, I actually just got this working and the answer is unbelievably bizarre. It all sorta boiled down to the Pragma header. I can't set the pragma header in my servlet and must do it in the Apache httpd.conf like this: Header append Pragma blah And blah could be anything and would

Re: Apache/Tomcat/SSL vs. Tomcat/SSL

2004-02-04 Thread David Wall
My thought is that since Apache is written in C it may be more efficient = to have Apache handle the SSL. However, I am not sure if the overhead = of the connector would negate any performance benefits gained from = having Apache handle the SSL rather than Tomcat. If performance is the =

RE: Apache + tomcat +ssl

2004-01-22 Thread Chakravarthy, Sundar
Edit apache's httpd.conf and ssl.conf to setup Virtual Hosts Edit Tomcat's server.xml to so that the Host name matches the Virtual Host servername inside httpd.conf and ssl.conf. http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/jk.html -Original Message- From: Omkar Joshi

Re: Apache + tomcat +ssl

2004-01-14 Thread Spam
I guess if you put the JkMount inside virtual host 172.16.16.10:80 , the JkMount is only valid for port 80. Put JkMount outside any virtual host ... should make it valid for all ports (included port 443). Whatever it looks around httpd.conf misconfiguration. Try this: IfModule mod_jk.c

Re: Apache + tomcat +ssl

2004-01-14 Thread Spam
You don't say if the displaying of images problem is related to port 80, 8080 or 443 (or any combination of these ports). I guess it's ok for port 8080. Try to display one image by using the full URL, example: https://localhost/appserver/myapp/img/viewmag.gif and

Re: Apache + tomcat +ssl

2004-01-13 Thread Spam
Hi, It should not depend on the port you use to connect to apache. Both http://myserver.com/index.jsp and https://myserver.com/index.jsp should have the same result with no specific configuration. I've configured mod_jk to redirect all .../appserver/* to tomcat. Then whatever I use

Re: Apache + tomcat +ssl

2004-01-13 Thread Spam
Please, find below the contents of workers2.properties (mod_jk2): [shm] file=${serverRoot}/logs/shm.file size=1048576 # Define the communication channel [channel.socket:localhost:8009] info=Ajp13 forwarding over socket tomcatId=localhost:8009 # define the worker

Re: Apache + tomcat +ssl

2004-01-13 Thread Spam
Do you mean it's working (both port 80 and 443) when apache is listening to port 80, but not any more since you stopped listening from this port? Whatever you have mentionned you have a firewall? Why don't you block port 80 using firewall and let apache in its standard configuration? Johann

RE: Apache + tomcat +ssl

2004-01-13 Thread Bruno.Melloni
This might be a dumb comment, but you do know that Tomcat's HTTPS port is 8443 by default, defined in server.xml, right? And that is only *after* you uncomment that part of the server.xml and do all the other Tomcat SSL setup tasks. I hope this helps. -Original Message- From: ext

Re: Apache + tomcat +ssl

2004-01-13 Thread Spam
Apache is used to support SSL requests, in this configuration no need for tomcat to know about https. (of course traffic between apache and tomcat is not encrypted) I guess port 8443 is used only when tomcat is stand-alone (or for paranoiac ;-) ). Server Error Is it a message issued by tomcat

Re: apache + tomcat + ssl + mod_rewrite

2003-11-10 Thread Erik Wright
If you really believe your mod_rewrite rule is properly configured to send *ALL* traffic to the same URL but via https then: I would double/triple check the access.log files to see if the request is actually getting served from the port 80 server. If I visit www.foo.com and then change the

Re: apache + tomcat + ssl + mod_rewrite

2003-11-10 Thread Andrew Davis
Thank you. Ironically, I realized I had forgotten a test. After going to a URL the normal way (https://qa-wap1/submitProfile.jsp), then changing the URL in the web browser to http://qa-wap1:80/submitProfile.jsp and reloading, the URL worked. I've mentioned this already. What I hadn't tried was

RE: Apache Tomcat SSL

2002-09-05 Thread Turner, John
I just tried https://luna.draft.de/hvb-immoplus and it worked perfectly (8:59AM EST, USA). It redirected me to https://luna.draft.de/hvb-immoplus/index.jsp which looks like exactly what it should do. John -Original Message- From: Bernhard Blasen [mailto:[EMAIL PROTECTED]] Sent:

Re: Apache Tomcat SSL

2002-09-05 Thread Milt Epstein
On Thu, 5 Sep 2002, Bernhard Blasen wrote: Hello, I succeeded connecting tomcat 4.0.4 with apache 2.0.40 with mod-jk. If i call an application with https://luna.draft.de/hvb-immoplus I get a 404 error The same call with http://... works fine. Other https://-connections, that do not

RE: Apache Tomcat SSL Integration

2002-08-27 Thread Turner, John
You don't need to. Just setup SSL on Apache. You only need SSL on tomcat if you are using tomcat in stand-alone mode. John Turner [EMAIL PROTECTED] -Original Message- From: Tyrone Buckle [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 8:31 AM To: [EMAIL PROTECTED]

Re: Apache Tomcat SSL Integration

2002-08-27 Thread Peter Choe
you can use mod_ssl and have apache handle the ssl connections to tomcat. At 08:30 AM 8/27/2002, you wrote: Hi all. I have an Apache install that serves all my static html pages and a Tomcat install that serves a JSP user registration system. I have the two talking to one another using

Re: Apache Tomcat SSL Integration

2002-08-27 Thread Tyrone Buckle
Cool, is there some good documentation for this somewhere. Thanks for the quick response! Peter Choe wrote: you can use mod_ssl and have apache handle the ssl connections to tomcat. At 08:30 AM 8/27/2002, you wrote: Hi all. I have an Apache install that serves all my static html pages and

Re: Apache Tomcat SSL Integration

2002-08-27 Thread Peter Choe
www.mod_ssl.org At 08:39 AM 8/27/2002, you wrote: Cool, is there some good documentation for this somewhere. Thanks for the quick response! Peter Choe wrote: you can use mod_ssl and have apache handle the ssl connections to tomcat. At 08:30 AM 8/27/2002, you wrote: Hi all. I have an

RE: Apache Tomcat SSL Integration

2002-08-27 Thread Turner, John
http://www.modssl.org John Turner [EMAIL PROTECTED] -Original Message- From: Tyrone Buckle [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 27, 2002 8:40 AM To: Tomcat Users List Subject: Re: Apache Tomcat SSL Integration Cool, is there some good documentation

RE: Apache + Tomcat + SSL : Please help me on this

2002-02-28 Thread Anton Brazhnyk
Hi, -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 28, 2002 5:37 AM To: [EMAIL PROTECTED] Subject: Apache + Tomcat + SSL : Please help me on this Hi All, I have a problem in configuring SSL. I basically have two questions.

RE: Apache+Tomcat+SSL+IE5.5

2001-08-13 Thread Martin van den Bemt
It has to do with settings in the browser that it gives this message. If you refere one thing to http in eg the header (eg external css stylesheet or external js file) then this messag is given. Mvgr, Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

RE: Apache + Tomcat + SSL

2001-02-06 Thread Ritwick Dhar
It should work without any changes. By the time Tomcat gets it, the request is already decoded. -Original Message- From: Phillip Kuzma [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 06, 2001 5:53 PM To: Tomcat List Subject: Apache + Tomcat + SSL Ok i'm going to try and use