Re: Problem mod_jk.so (1.2.26) 100% process (Tomcat 5.5.26 + Apache 2.2.9)

2008-06-23 Thread Rainer Jung
Estevam Henrique Portela Mota e Silva schrieb: Hi, Install - Apache 2.2.9 (ok!), Tomcat 5.5.26 (ok!) e JDK 1.5.0_15 *Entered link with the Tomcat happened was that Tomcat5.exe has process is 100%. It is the problem MSVCRT.dll* * Details MSVCRT.dll* Tamanho: 335 KB (343.040 bytes) Versão:

Problem mod_jk.so (1.2.26) 100% process (Tomcat 5.5.26 + Apache 2.2.9)

2008-06-22 Thread Estevam Henrique Portela Mota e Silva
Hi, Install - Apache 2.2.9 (ok!), Tomcat 5.5.26 (ok!) e JDK 1.5.0_15 when I set simple in Apache: *httpd.conf* Include conf/tomcat.conf * tomcat.conf* LoadModule jk_module modules/mod_jk-1.2.26-httpd-2.2.4.so JkWorkersFile E:/WebServer/Apache-2.2.9/conf/workers.properties JkShmFile

Re: In-Process Tomcat

2007-06-25 Thread Leon Rosenberg
On 6/25/07, lightbulb432 [EMAIL PROTECTED] wrote: Thanks for your detailed response. See questions below. In-process Tomcat is to have Tomcat running in the same process space as Apache HTTPD, IIS, or other web server. Since most of the web servers are implemented in C/C++, you will have

Re: In-Process Tomcat

2007-06-25 Thread lightbulb432
Any web application that needs to scale wouldn't use httpd (or anything else) in front of tomcat, so the question in- or out-process tomcat doesn't matter. From 5 high performance application I know the details of, 1 is still using apache in front; more out of habbit, rather than by need

RE: In-Process Tomcat

2007-06-25 Thread Caldarale, Charles R
From: lightbulb432 [mailto:[EMAIL PROTECTED] Subject: Re: In-Process Tomcat You're actually the first person I've heard to say that apps that need to scale would not use HTTPD. I've read the exact opposite on multiple occassions, but as I'm a relative newbie to Tomcat I'm hoping people

Re: In-Process Tomcat

2007-06-25 Thread Leon Rosenberg
On 6/25/07, lightbulb432 [EMAIL PROTECTED] wrote: Any web application that needs to scale wouldn't use httpd (or anything else) in front of tomcat, so the question in- or out-process tomcat doesn't matter. From 5 high performance application I know the details of, 1 is still using apache

Re: In-Process Tomcat

2007-06-25 Thread lightbulb432
? Would you be required to, in your JSPs, include all links to static content using http://staticserver.site.com/...? What are all the available options to implement this setup? Thanks. -- View this message in context: http://www.nabble.com/In-Process-Tomcat-tf3972772.html#a11290376 Sent from

Re: In-Process Tomcat

2007-06-25 Thread Leon Rosenberg
:-) regards Leon What are all the available options to implement this setup? Thanks. -- View this message in context: http://www.nabble.com/In-Process-Tomcat-tf3972772.html#a11290376 Sent from the Tomcat - User mailing list archive at Nabble.com

In-Process Tomcat

2007-06-24 Thread lightbulb432
I read a few things that explained the difference (in configurations where you must front Tomcat with Apache HTTPD) between in-process Tomcat and out-of-process Tomcat, and have a couple of questions. It said that in-process Tomcat will reduce latency (which I understand) but decrease both

RE: In-Process Tomcat

2007-06-24 Thread Duan, Nick
In-process Tomcat is to have Tomcat running in the same process space as Apache HTTPD, IIS, or other web server. Since most of the web servers are implemented in C/C++, you will have to use JNI to integrate with Java-based Tomcat, and create a mod_tomcat like module for Httpd. Definitely

RE: In-Process Tomcat

2007-06-24 Thread lightbulb432
Thanks for your detailed response. See questions below. In-process Tomcat is to have Tomcat running in the same process space as Apache HTTPD, IIS, or other web server. Since most of the web servers are implemented in C/C++, you will have to use JNI to integrate with Java-based Tomcat