Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-30 Thread David Cassidy
Tony, mod_jk - which uses the ajp13 protocol is not the same as the http11aprprotocol which uses http/1.1 as its protocol. Filip - is there a comparison between apache talking to http to tomcat vs apache with ajp to tomcat ? Ta D On Thu, 2007-11-29 at 13:37 -0800, Tony Anecito wrote: Thanks

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-29 Thread Brian Millett
Filip Hanik - Dev Lists escribío: using mod_proxy_http, you want to enable ProxyPreserveHost On Filip loknor wrote: Filip Hanik - Dev Lists wrote: three options mod_proxy_http mod_jk mod_proxy_ajp Filip Yep just found the other option, and a site that got me up to

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-29 Thread David Cassidy
Has anyone got a comparison of the NIO one vs standard java connectors ? both with and without the native libs ? Ta On Thu, 2007-11-29 at 08:38 -0600, Brian Millett wrote: Filip Hanik - Dev Lists escribío: using mod_proxy_http, you want to enable ProxyPreserveHost On Filip

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-29 Thread Filip Hanik - Dev Lists
the speed of the connectors are (in order) Http11Protocol - Java BIO connector, no poller, blocking read/write Http11AprProtocol - APR connector, poller, blocking read/write Http11NioProtocol - Java NIO connector, poller, simulated blocking read/write the reason the NIO is slower, is cause it

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-29 Thread Tony Anecito
Thanks Filip I am interested in that information also. I will try to get it configured and running and give feedback on performance since I already use mod_jk or the Http11AprProtocol as I think you call it. Regards, -Tony --- Filip Hanik - Dev Lists [EMAIL PROTECTED] wrote: the speed of the

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-29 Thread Tony Anecito
I was interested in seeing how it compared to the regular Apache server. I am not sure of the advantages of combining multiple tiers. The reason to keep them separate is to be able to scale by adding servers to a specific tier. My experience has been keep the tiers separate. I am not sure how

Tomcat 6.0 with Apache 2.2 front-end

2007-11-28 Thread loknor
on Windows Server 2003. I have Apache Running. I have Tomcat running (through port 8080). I just want to know how to communicate between them. thanks, Brent -- View this message in context: http://www.nabble.com/Tomcat-6.0-with-Apache-2.2-front-end-tf4893923.html#a14015513 Sent from the Tomcat - User

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-28 Thread Filip Hanik - Dev Lists
three options mod_proxy_http mod_jk mod_proxy_ajp Filip loknor wrote: Hi, Can anyone provide links to a few tutorials on running Tomcat 6.0 with Apache on the front-end? I know there are 2 recommended techniques, mod_jk and mod_proxy. I'd like to use mod_proxy because it appears to be

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-28 Thread loknor
-to-integrate-tomcat-55-with-apache-20 Thanks, Brent -- View this message in context: http://www.nabble.com/Tomcat-6.0-with-Apache-2.2-front-end-tf4893923.html#a14018301 Sent from the Tomcat - User mailing list archive at Nabble.com

Re: Tomcat 6.0 with Apache 2.2 front-end

2007-11-28 Thread Filip Hanik - Dev Lists
using mod_proxy_http, you want to enable ProxyPreserveHost On Filip loknor wrote: Filip Hanik - Dev Lists wrote: three options mod_proxy_http mod_jk mod_proxy_ajp Filip Yep just found the other option, and a site that got me up to speed very quickly. I can now communicate