Re: warning error sending end packet

2008-01-17 Thread Rainer Jung
http://www.nabble.com/mod_jk-broken-pipe-ts6882827.html Eqbal schrieb: I am seeing a lot of warning messages in catalina.out with the stack trace show below. We are using tomcat 5.5.16 with apache 2 and ajp13 to connect. Can someone shed some light on this? Thanks.

Re: Effect of MaxThreads

2008-01-16 Thread Rainer Jung
How do you connect httpd to Tomcat? Via mod_jk, mod_proxy_http or mod_proxy_ajp? Which MPM do you use in httpd, prefork (single-threaded) or worker (multi-threaded) or something else? To give you hints, it would be nice to see your connector configuration, and the configuration of your

Re: mod_jk maintenance, recovery

2008-01-16 Thread Rainer Jung
Dominik Pospisil wrote: Indeed. It would be OK to return 503, for requests, that already have been received by the first node, but not returned yet. New requests That's the case. All errors I am getting are from requests which were allready in processing by failing node. Why it is OK to

Re: mod_jk maintenance, recovery

2008-01-16 Thread Rainer Jung
... adding to previous post: It also does not retry/fail over, in the following (more or less obvious cases): - there was a problem with the client (browser) connection - we already started to send back parts of the response to the client, typically the headers (depending on

Re: Doubt in how lbfactor works with load balancing of Apache with Tomcat cluster

2008-01-16 Thread Rainer Jung
are divided by 2 approximately once a minute. This is true for all methods, apart from B, where the load value does not accumulate, so there's no need to decay. Regards, Shiby Regards, Rainer Rainer Jung [EMAIL PROTECTED

Re: Doubt in how lbfactor works with load balancing of Apache with Tomcat cluster

2008-01-16 Thread Rainer Jung
Mladen Turk wrote: Rainer Jung wrote: If there is no such worker, or the worker is nor usable, the request is handled like it wouldn't have a route in the session id, or no session at all. Also if there is directive sticky_session_force=true and the worker is not usable then the 503

Re: tomcat connector 1.2.26 with apache httpd 2.2.3

2008-01-15 Thread Rainer Jung
Hallo Günther, Günther wrote: Hi! I got a problem running jk 1.2.26 on httpd 2.2.3 and I'm not sure if this a setup problem or a bug in jk. When compiling jk it says: --- mod_jk.c: In function âinit_ws_serviceâ: mod_jk.c:671: warning: implicit declaration of function

Re: AW: tomcat connector 1.2.26 with apache httpd 2.2.3

2008-01-15 Thread Rainer Jung
Hi Günther, Günther wrote: Hallo Rainer, thank you for your fast reply. I guess it's an error in the opensuse 10.2 apache2-devel-2.2.3-22 rpm. MODULE_MAGIC_NUMBER_MINOR is 5 in /usr/include/apache2-prefork/ap_mmn.h and /usr/include/apache2-worker/ap_mmn.h´. The change-logs included in the

Re: Doubt in how lbfactor works with load balancing of Apache with Tomcat cluster

2008-01-14 Thread Rainer Jung
Hi Shiby, Shiby Maria John schrieb: Hi, This is my worker.properties for Apache server for clustering 3 instances of Tomcat in my machine. # The advanced router LB worker worker.list=router # Define a worker using ajp13 worker.worker1.port=8009 worker.worker1.host=localhost

Re: Behavior of Tomcat Ant task list

2008-01-14 Thread Rainer Jung
Hi Alain, [EMAIL PROTECTED] wrote: Environment Description : Windows 2000 SP4 ; IE 6.0 Apache Tomcat 5.5 Apache Ant 1.7.0 Object : my purpose is to use the ant task list defines in Tomcat distrib (Tomcat distrib gives a general purpose build script with lot of features, including a target

Re: strange forwarding problem with jkmount

2008-01-14 Thread Rainer Jung
Hi Edwin, Edwin Walsh wrote: Hi, I have the most peculiar problem (at least in my point of view) with forwarding with jkmount. JkMount has always worked on my server, but suddenly, without changing anything but the mod_jk settings (adding a new jkmount and some rewriterules), JkMount

Re: doubt in clustering with sticky sessions

2008-01-11 Thread Rainer Jung
Shiby Maria John wrote: Hi, This is a bit of documentation from the Load balancing page of the Apache site. sticky_session specifies whether requests with SESSION ID's should be routed back

Re: Datasource Property Parameters (Oracle) JNDI

2008-01-11 Thread Rainer Jung
Berglas, Anthony wrote: Hello, I am trying to set up 0racle connection pooling. Some of the parameters are reflected normally, but some are specified via a property lists. How do I set the property list properties using Tomcat/JNDI? I can set up the basic DataSource, but I cannot set the

Re: mod_jk maintenance, recovery

2008-01-11 Thread Rainer Jung
Hi Dominik, Dominik Pospisil wrote: Hello, I am having following problem with following failover test scenario. Cluster setup: - 1 apache load balancer - 2 nodes with equal LB factor - sticky session turned on - Apache/2.0.52, mod_jk/1.2.26 Test scenario: 1. start 1st node 2. start load

Re: mod_jk maintenance, recovery

2008-01-11 Thread Rainer Jung
Hi Dominik, Eventually, after killing 1st node, and after returning couple of 503 Service Temporarily Unavailable exceptions, mod_jk finally recheck 2nd node status, reroute requests to 2nd node and resumes correct operation. Still, I it is not clear to me, why I am getting 503 exceptions. I

Re: emptySessionPath and new session id

2008-01-11 Thread Rainer Jung
Hi Nahor, Nahor schrieb: Hi, I want my webapp to use nice URL for a user's homepage (e.g. http://server/user;). Because of that, I need to have an empty path in the session cookie. So far, I've been using emptySessionPath. However, emptySessionPath uses the session id from a cookie when

Re: Preferred load-balanced worker

2008-01-09 Thread Rainer Jung
Hi, Nahor wrote: Hi, Is there a way to specify at runtime what worker the load-balancer should use first? For some request, we can't use cookies so we pass the session id via the URL or via the query string. We then force the worker using RewriteRule and the JK_WORKER_NAME env var. But

Re: Forwarding with jkmount

2008-01-09 Thread Rainer Jung
Hi Edwin, Edwin Walsh wrote: Hi, First of all I would like to mention that this is my first post on this list, I hope that this question is posted in the right place. I have tried finding a solution for my problem, but it either doesn't exist, or my limited brain can't manage to figure out

Re: mod_jk/tomcat problem

2008-01-09 Thread Rainer Jung
Hi Jordi, Jordi Prats wrote: Hi I'm trying to balance connections using mod_jk, but I'm getting this error: [Wed Jan 09 11:12:55 2008] [31970:3086935744] [info] ajp_service::jk_ajp_common.c (2186): (loadbalancer) sending request to tomcat failed (recoverable), because of error during request

Re: Forwarding with jkmount

2008-01-09 Thread Rainer Jung
Have fun! Rainer Rainer Jung wrote: Hi Edwin, Edwin Walsh wrote: Hi, First of all I would like to mention that this is my first post on this list, I hope that this question is posted in the right place. I have tried finding a solution for my problem, but it either doesn't exist, or my limited

Re: Busyness Method and others...

2008-01-09 Thread Rainer Jung
with the response. methods please? Thanks and Best Regards Mohan Regards, Rainer Rainer Jung-3 wrote: Mohan2005 schrieb: Hello! The documentation says the following on the Busyness Method... QUOTE If set to B[usyness] the balancer will pick the worker with the lowest current load, based

Re: ISAPI redirector log file not being written

2008-01-09 Thread Rainer Jung
pmarchwiak wrote: Isapi_redirect.dll is not writing to its log file. I have Tomcat 5.5 installed on a Windows Server 2003 box and I am using the ISAPI redirector to redirect some requests from IIS. I am using the isapi_redirect.properties file for my configuration (as opposed to the registry

Re: JSP POST SSI, JSP sub request does not complete, bug id 43929

2008-01-08 Thread Rainer Jung
Hi Robert, I reopened the bug. See comments there. Robert Starzer schrieb: hi, could somebody please help me with this issue http://issues.apache.org/bugzilla/show_bug.cgi?id=43929 related issue is (http://issues.apache.org/bugzilla/show_bug.cgi?id=41949) i'm -not- using an old tomcat

Re: Busyness Method and others...

2008-01-08 Thread Rainer Jung
Mohan2005 schrieb: Hello! The documentation says the following on the Busyness Method... QUOTE If set to B[usyness] the balancer will pick the worker with the lowest current load, based on how many requests the worker is currently serving. This number is divided by the workers lbfactor, and

Re: mod_jk Busyness algorithm and Node Health Check

2008-01-07 Thread Rainer Jung
mod_jk ? ), Only checks the Network Latency (Network Response ) through Cping and Cpong methods as a nodes health as described in http://tomcat.apache.org/connectors-doc/generic_howto/timeouts.html Correct. Rainer Jung-3 wrote: Hi Mohan, Mohan2005 schrieb: Dear All; If I am not wrong

Re: tomcat5.5, balancer

2008-01-07 Thread Rainer Jung
Julio Cesar Leiva schrieb: Hi all We have this setup 1 web server apache 2.2.0 I hope it's not 2.2.0 but something more recent (e.g. 2.2.4 or 2.2.6) 2 tomcat servers tomcat 5.5.20 mod_jk 1.2.25 This is our workers.properties Remove the next line, it's useless.

Re: mod_jk Busyness algorithm and Node Health Check

2008-01-06 Thread Rainer Jung
Hi Mohan, Mohan2005 schrieb: Dear All; If I am not wrong, the Busyness algorithm routes requests to workers by checking their Health What criteria constitutes as a nodes Health and if so, How is it determined (using the native JVM or else ) All balancing methods of mod_jk share common

Re: Content_Length Problem

2008-01-05 Thread Rainer Jung
, or does it do it automatically? Thanks- Joe -Original Message- From: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Friday, January 04, 2008 2:06 PM To: Tomcat Users List Subject: Re: Content_Length Problem Hi Joe, are you able to reproduce the behaviour with few, maybe only a single request

Re: Content_Length Problem

2008-01-05 Thread Rainer Jung
In Joes case CICS seems to get used as an HTTP client, not an HTTP server. Nevertheless the server page you found includes a link to http://publib.boulder.ibm.com/infocenter/cicsts/v3r1/topic/com.ibm.cics.ts31.doc/dfhtl/topics/dfhtl_cwschunking.htm that contains the following information:

Re: Tomcat 5.5.20+ behind an F5 Load Balancer doing SSL Connector problem

2008-01-05 Thread Rainer Jung
Hi Gregory, the descriptions below work (at least) for TC 5.0/5.5/6.0. Gregory Gerard schrieb: I've got an F5 load balancer running version 9.3 of the software. I've got several Tomcat installations behind it. The F5 does all SSL and clear traffic as a reverse proxy, rewriting headers as

Re: Tomcat 5.5.20+ behind an F5 Load Balancer doing SSL Connector problem

2008-01-05 Thread Rainer Jung
Sorry didn't read your post carefully enough. The access log thing is OK, but about the redirect: I've got an F5 load balancer running version 9.3 of the software. I've got several Tomcat installations behind it. The F5 does all SSL and clear traffic as a reverse proxy, rewriting headers as

Re: Tomcat 5.5.20+ behind an F5 Load Balancer doing SSL Connector problem

2008-01-05 Thread Rainer Jung
fakes those getRemote* from the info retrieved by mod_jk. greg Rainer Jung wrote: Hi Gregory, the descriptions below work (at least) for TC 5.0/5.5/6.0. Gregory Gerard schrieb: I've got an F5 load balancer running version 9.3 of the software. I've got several Tomcat installations behind

Re: tc-native-1.1.12 fails to configure on Redhat EL4 x86_64 (... command not found)

2008-01-04 Thread Rainer Jung
Hi Rainer, I can reproduce on Solaris. The first problem should be fixed by: --- configure.orig 2007-12-21 15:06:53.0 +0100 +++ configure 2008-01-04 14:16:13.0 +0100 @@ -2490,7 +2490,7 @@ { (exit 1); exit 1; }; } fi sapr_version=`echo $sapr_pversion|sed -e

Re: tc-native-1.1.12 fails to configure on Redhat EL4 x86_64 (... command not found)

2008-01-04 Thread Rainer Jung
Did you see my second post? Rainer Traut schrieb: Hi Rainer :) Rainer Jung schrieb: Hi Rainer, I can reproduce on Solaris. The first problem should be fixed by: --- configure.orig 2007-12-21 15:06:53.0 +0100 +++ configure 2008-01-04 14:16:13.0 +0100

Re: tc-native-1.1.12 fails to configure on Redhat EL4 x86_64 (... command not found)

2008-01-04 Thread Rainer Jung
Replace --Wl, by -Wl, in configure and build/tcnative.m4. --- configure.orig 2007-12-21 15:06:53.0 +0100 +++ configure 2008-01-04 14:41:51.0 +0100 @@ -3936,7 +3936,7 @@ TCN_OPENSSL_LIBS=-L$use_openssl/lib -Wl,+b: -lssl -lcrypto ;;

Re: Content_Length Problem

2008-01-04 Thread Rainer Jung
Hi Joe, are you able to reproduce the behaviour with few, maybe only a single request? If so: you can increase JkLogLevel to debug (not recommended for high load production size, because it produces a lot of log lines), reproduce the problem and make the log file available. What I didn't really

Re: Apache Portable Runtime and Tomcat?

2008-01-04 Thread Rainer Jung
Hi Jim, APR and OpenSSL are maintained by other projects (apr.apache.org resp. www.openssl.org). The tcnative source can be obtained from http://www.apache.org/dist/tomcat/tomcat-connectors/native/ The download contain a dsp file for Visual Studio (supposing you are talking about WIN platform

Re: Content_Length Problem

2008-01-04 Thread Rainer Jung
not sure if I applied it right. Is there a registry setting that I need to change to allow chunked encoding with this patch, or does it do it automatically? Thanks- Joe -Original Message- From: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Friday, January 04, 2008 2:06 PM

Re: Apache Portable Runtime and Tomcat?

2008-01-04 Thread Rainer Jung
: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Friday, January 04, 2008 4:34 PM To: Tomcat Users List Subject: Re: Apache Portable Runtime and Tomcat? Hi Jim, APR and OpenSSL are maintained by other projects (apr.apache.org resp. www.openssl.org). The tcnative source can be obtained from

Re: Content_Length Problem

2008-01-04 Thread Rainer Jung
There's no Content-Length coming from the backend. See below. So: are you sure the backend sends it, if you send the same request without a web server in front of Tomcat? I would expect, that it's also missing, if you contact Tomcat directly via httpd. In this case it's an error in the webapp.

Re: mod_jk 1.2.26

2008-01-04 Thread Rainer Jung
Hi Scott, Scott McClanahan schrieb: I'm getting 404 errors when I try to access the jkmanager page. There is only one backend tomcat instance and no load balancing configuration at all. I was just wanting to see the UI and if it had changed at all with the upgrade. Do you now get 404's if

Re: Event Log Error

2008-01-03 Thread Rainer Jung
It looks like you are using mod_jk2. JK2 has been deprecated long ago. It will be hard to get any support for it now. Please switch to JK, which is still actively developed and nearly all features of JK2 have been backported. Regards, Rainer Kandala Satish schrieb: Hi, I am receiving

Re: JK connector causes Tomcat to utilize 50% CPU

2008-01-03 Thread Rainer Jung
Are you using the tcnative.dll? If so, do you know, which version? There was a bug in tcnative that resulted in the same symptom. You might want to remove tcnative.dll temporarily to check, if this fixes the problem, and then might want to check with a recent tcnative. Regards, Rainer Smith,

Re: other ways to change the Connector element in server.xml?

2008-01-03 Thread Rainer Jung
Like Chuck said: you can freely choose names and values you like. Choose your names carefully to prevent collisions with properties used by other components, e.g. you can start the name with your internet domain name or similar. Example Property -Dorg.myorg.myapp.node1.http.port=8001 in

Re: clarification of server.xml settings for AJP 1.3 Thread Limit

2008-01-02 Thread Rainer Jung
Mohan2005 schrieb: Question 02 Recently we have made our jboss servers j2ee compliant, earlier it was not. Earlier we used the Apache front end to render all static pages such as image files, php files etc... Now we cannot do that, AS FAR AS WE KNOW, as j2ee does not allow it. So we

Re: Tomcat status 75 error

2008-01-02 Thread Rainer Jung
Hi Paul, Paul Beattie schrieb: Hi, I have a series of relatively high transaction volume tomcat servers which are sporadically hitting thread issues. We run with with tomcat 4.1.27 at the current time. The behaviour we notice is after several days of around one hundred thousand

Re: other ways to change the Connector element in server.xml?

2008-01-02 Thread Rainer Jung
Hi Anna, Anna Nhan schrieb: Hi, Is there a way to change the Connector element in server.xml without manually editing the file? Could we, for example, change the CATALINA_OPTS line using a script or C code to choose whether to use HTTP or HTTPS, the file path to the keystore and keystore

Re: need help with Tomcat-generated redirects

2008-01-02 Thread Rainer Jung
Hi Julian, Julian Dunn schrieb: Hi, I have some applications running under a Tomcat installation set up in this way: [load balancer on port 80] --- [Apache server on port 5001] -- [Tomcat server on port 7001] One of the Tomcat applications sends a redirect to Apache because there is

Re: need help with Tomcat-generated redirects

2008-01-02 Thread Rainer Jung
Hi Julian, Julian Dunn schrieb: How do you connect Apache to Tomcat? If you are using mod_jk, the module gets the port it sends to Tomcat via ap_get_server_port(), which in turn depends on UseCanonicalName. If this is set to On, the port is also determined from the port in ServerName. I'm

Re: mod_spnego SingleSignOn over mod_jk

2008-01-01 Thread Rainer Jung
Hi Cenk, Cenk Oguz schrieb: I am looking into configuring SingleSignOn Kerberos authentication in a Tomcat application using SPNEGO authentication on a Apache2 frontend server. The fontend apache2 currently forwards all requests to Tomcat through mod_jk. As I see there is an apache2 module

Re: NTLM, mod_JK and Internet Explorer

2007-12-28 Thread Rainer Jung
Hi Lucas, I think I remember, that NTLM needs HTTP Keepalive. Now this is default per httpd, but one can disable it, so make sure KeepAlive is active in your httpd configuration. Regards, Rainer Lucas Blancher schrieb: Hello, I have a setup that is using Apache 2.2.x, mod_jk 1.2.26,

Re: ISAPI redirector error in Tomcat 4.1

2007-12-28 Thread Rainer Jung
. -Original Message- From: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Thursday, December 27, 2007 1:43 PM To: Tomcat Users List Subject: Re: ISAPI redirector error in Tomcat 4.1 Hi Chacko, if you can reproduce the problem easily, please do the following: - make sure you are using

Re: RES: how to get rid of the path after the URL

2007-12-28 Thread Rainer Jung
Pavel Pragin schrieb: Hello, Do you meet ROOT literaly? Yes. All URLs that do not map to any context deployed by it's name will be mapped to the special context named ROOT. thanks -Original Message- From: Mark Thomas [EMAIL PROTECTED] To: Tomcat Users List

[ANN] Apache Tomcat JK 1.2.26 Web Server Connector released

2007-12-24 Thread Rainer Jung
The Apache Tomcat team is pleased to announce the immediate availability of version 1.2.26 of the Apache Tomcat Connectors. It contains connectors, which allow a web server such as Apache HTTPD, Microsoft IIS and Sun Web Server to act as a front end to the Tomcat web application server. This

Re: Tagging mod_jk 1.2.26

2007-12-21 Thread Rainer Jung
is the jkstatus mappings! The new connection and failover handling work with my cluster configs. Great work and happy christmas tagging time :-) Peter +1 to tag 1.2.26-dev thanks a lot for the feedback. Am 20.12.2007 um 17:07 schrieb Rainer Jung: I'm planning to tag JK 1.2.26 tomorrow, Friday, after

Re: [Announce] Enhanced ISAPI Redirector + Tomcat Connector Binaries

2007-12-21 Thread Rainer Jung
Hi Tim, Tim Whittington wrote: There's one in particular that we feel is very useful that hasn't been accepted though, which is the addition of chunked encoding support to the ISAPI Redirector, which allows IIS to use HTTP keep alives between the browser and IIS - we've found this has major

Re: Quality check mod_jk 1.2.26-dev

2007-12-20 Thread Rainer Jung
\isapi_redirect.log log_level=warn worker_file=D:\tomcat_iis_connector\conf\workers.properties worker_mount_file=D:\tomcat_iis_connector\conf\uriworkermap.properties - Original Message - From: Rainer Jung [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: users@tomcat.apache.org Sent: Tuesday, December

Re: Quality check mod_jk 1.2.26-dev

2007-12-20 Thread Rainer Jung
The download files on people.apache.org for IIS have been updated. Rainer Jung wrote: Hi Travis, I think we found the problem. I already committed a fix and Mladen or I will provide a new isapi_redirector build soon. The problem is only IIS specific and it only shows up, when using vhost

Tagging mod_jk 1.2.26

2007-12-20 Thread Rainer Jung
I'm planning to tag JK 1.2.26 tomorrow, Friday, after 2 p.m. There was one problem report. I think we fixed this and I expect, that we get some feedback before that time. In case there are more problem reports outstanding please let me know. Regards, Rainer

Re: Regarding, an error message for Apache version 2.2.6

2007-12-19 Thread Rainer Jung
Hi Vimal, Vimal Kumar schrieb: Hello, Jkworkers file takes one argument, the name of a worker file for Tomcat servlet containers. What does this error message mean, I have defined a workers.properties file and path was also checked, it was correct. The Apache version is 2.2.6 amd the

Re: Quality check mod_jk 1.2.26-dev

2007-12-19 Thread Rainer Jung
Travis Haagen wrote: I may have found a problem with 1.2.26-dev. I installed 'isapi_redirect.dll' on my server and only one of two workers would respond to HTTP requests after that (ajp13w, but not ajp13lmsw). I then reinstalled the 1.2.25 version of the DLL and it worked fine. I'm running this

Re: Configuring mod_jk?

2007-12-18 Thread Rainer Jung
Hi Abel, AbelMacAdam schrieb: Hi, Yesterday I tried to integrate Tomcat (6.0.14) in my Apache (2.2.6). I saw a document about how to do it, but had not have the time to test it (really). But the appache_error.log states: [Tue Dec 18 08:54:35 2007] [warn] No JkLogFile defined in httpd.conf.

Re: Configuring mod_jk?

2007-12-18 Thread Rainer Jung
AbelMacAdam schrieb: My httpd.conf contains the following entries: LoadModule jk_module modules/mod_jk.so AddModulemod_jk.c JkWorkersFileC:/Program Files/Apache Software Foundation/Tomcat 6.0/conf/workers.properties JkLogFileC:/wamp/logs/mod_jk.log JkLogLevel

Re: Configuring mod_jk?

2007-12-18 Thread Rainer Jung
AbelMacAdam schrieb: You where right, the line containing JkWorkersFile generated an error: Syntax error on line 499 of C:/wamp/bin/apache/apache2.2.6/conf/httpd.conf: JkWorkersFile takes one argument, the name of a worker file for the Tomcat servlet containers I changed the JkWorkersFile

Quality check mod_jk 1.2.26-dev

2007-12-18 Thread Rainer Jung
Hi all, The next version of mod_jk is approaching its release. A code snapshot (revision 605168) is available at: http://people.apache.org/~rjung/mod_jk-dev/ It is in the same format as a release download, so easy to build. Under the same URL you can find the updated documentation. It would be

Re: apache and tomcat

2007-12-18 Thread Rainer Jung
Richard Dunne schrieb: I'm looking to download the binaries from here http://www.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/win32/jk-1.2.25/. Just so I'm reading instructions correctly, mod_jk-apache-2.2.4.so should be copied and then renamed mod_jk.so mod_jk-apache-2.2.4.so.asc

Re: apache and tomcat

2007-12-18 Thread Rainer Jung
Richard Dunne schrieb: I downloaded mod_jk-apache-1.3.27.so from Note: 1.3.27. For Apache 2.0.x you need to use the file mod_jk-apache-2.0.59.so, for 2.2.x the file mod_jk-apache-2.2.4.so. Apache httpd version 1.3.x, 2.0.x and 2.2.x need different module files.

Re: apache and tomcat

2007-12-18 Thread Rainer Jung
. Should it go in the Apache2 /lib directory? Richard. - Original Message From: Rainer Jung [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Tuesday, December 18, 2007 4:08:53 PM Subject: Re: apache and tomcat Richard Dunne schrieb: I downloaded mod_jk-apache

Re: apache and tomcat

2007-12-18 Thread Rainer Jung
Richard Dunne schrieb: I have added this to my http.conf LoadModule jk_module modules/mod_jk.so JkWorkersFile /workers.properties JkLogFile C:/Program Files/Apache Software Foundation/Tomcat 6.0/logs/mod_jk.log JkLogLevel debug Alias /examples C:/Program Files/Apache Software

Re: apache and tomcat

2007-12-18 Thread Rainer Jung
BTW: this message also indicates, that Apache httpd could load the module into memory, so you are doing progress :) Richard Dunne schrieb: I have added this to my http.conf LoadModule jk_module modules/mod_jk.so JkWorkersFile /workers.properties JkLogFile C:/Program Files/Apache Software

Re: Tomcat in conflict with Virtual Host directive in Apache?

2007-12-17 Thread Rainer Jung
Ljuba Veselinova schrieb: Hi, I have finally gotten Tomcat 5.5.17 to work as a windows service on a windows xp machine; it communicates with Apache 2.0.58 but only if if the ServerName in mod_jk.conf, httpd.conf and in workers.properties is the same as the computer name listed in system

Re: Tomcat and IIS losing their link

2007-12-17 Thread Rainer Jung
: Rainer Jung [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Friday, December 14, 2007 9:20 AM Subject: Re: Tomcat and IIS losing their link Travis Haagen wrote: Hello, I've got IIS 6.0 linked with Tomcat 5.5.25 (with JDK 1.5.0_14-b03 and AJP dll) via the ISAPI

Re: apache2-modjk-tomcat

2007-12-16 Thread Rainer Jung
Chris Pat schrieb: Hi A previously working config, is not working after restore. I know the restore is not complete. It is as complete as I can make it and odd behavior is happening. Some webapps are showing up fine. Two in particular show the forms authentication however when entered

Re: Tomcat and IIS losing their link

2007-12-14 Thread Rainer Jung
Travis Haagen wrote: Hello, I've got IIS 6.0 linked with Tomcat 5.5.25 (with JDK 1.5.0_14-b03 and AJP dll) via the ISAPI connector (JK 1.2.25) on Windows 2003 Server, and during high traffic periods, the connection between IIS and Tomcat is being severed. This has been occurring in the

Re: ISAPI JK2 ran better than JK, how can that be?

2007-12-13 Thread Rainer Jung
Hi Tim, [EMAIL PROTECTED] wrote: But now I have a load balancer in place, with one worker. A status is shown below after about 6hrs of traffic. As you can see the client errors make up about 6% of all incident traffic, though they dwarf server errors. Acc Err CE RE Wr

Re: apxs problem

2007-12-12 Thread Rainer Jung
Dan Ciarniello wrote: Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dan, Dan Ciarniello wrote: I am putting together RPMs for apache and tomcat and I want to include the mod_jk connector with the apache RPM :( Don't do that; instead, have a separate RPM

Re: Apache Tomcat; Event Error in Windows 2003

2007-12-11 Thread Rainer Jung
Hi, looks like the messages are not really coming from Tomcat, but from the JK2 isapi redirector running in IIS? JK2 has been deprecated a long time ago. All important features of JK2 have been backported to JK, which is still actively developed. It will be hard to get answers for JK2.

Re: JK - welcome file displays text when mapped to servlet

2007-12-10 Thread Rainer Jung
Hi, Matthew Thomas Broadhead wrote: Recently upgraded Tomcat from version 4.1.31 to 6.0.14. In my web.xml - index.htm is set as the welcome file - index.htm is mapped to a servlet which produces html and there is a blank index.htm in the root of the webapp. This worked fine for 4.1.31 on port

Re: ISAPI JK2 ran better than JK, how can that be?

2007-12-10 Thread Rainer Jung
Hi Tim, [EMAIL PROTECTED] wrote: OK, So our website keeps crashing over the past couple of weeks (usual story on this list eh?) Not really (although a users list is always focused on problems and not on the working side of things ...) We've been running JK isapi plugin v1.2.15 for a fair

Re: ISAPI JK2 ran better than JK, how can that be?

2007-12-10 Thread Rainer Jung
: Rainer Jung [mailto:[EMAIL PROTECTED] Sent: Mon 10/12/2007 12:11 To: Tomcat Users List Subject: Re: ISAPI JK2 ran better than JK, how can that be? Hi Tim, [EMAIL PROTECTED] wrote: OK, So our website keeps crashing over the past couple of weeks (usual story on this list eh?) Not really

Re: discrepancy for tomcat connector file names for win32

2007-12-09 Thread Rainer Jung
Fixed. Will take a little while until synced to the mirrors. Caldarale, Charles R schrieb: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: discrepancy for tomcat connector file names for win32 Is there a discrepancy at this URL

Re: need help with Tomcat5.5.25 and Apache2.0.61 modJK configuration

2007-12-07 Thread Rainer Jung
Sangeeta Verma wrote: Hi, I have installed Apache 2.0.61 and Tomcat 5.5.25 on windows 2003 machine.Ifound mod_jk- apache-2.0.29.so and mod_jk_1.2.6_2.0.50.dll both on web and downloaded. The 1.2.6 version is *very* old, we are at version 1.2.25 of mod_jk. Use the 2.0.29 file, because that was

Re: IIS redirect

2007-12-05 Thread Rainer Jung
Jing Chen wrote: Hello, I have two applications installed at two different Tomcat 5.5 on the same box, and I want to setup IIS to redirect for both applications. Is it possible? Can I define two ajp13 workers? Here is my current workers2.properties which on can redirect to one application:

Re: tomcat.conf JAVA_OPTS

2007-12-05 Thread Rainer Jung
Caldarale, Charles R wrote: From: Rainer Jung [mailto:[EMAIL PROTECTED] Subject: Re: tomcat.conf JAVA_OPTS c. wrote: I'm wondering what the JAVA_OPTS -Xminf0.1 and -Xmaxf0.3 are. Anyone know? MinHeapFreeRatio and MaxHeapFreeRatio (divided by 100). I'd recommend not setting these unless

Re: tomcat.conf JAVA_OPTS

2007-12-04 Thread Rainer Jung
c. wrote: I'm wondering what the JAVA_OPTS -Xminf0.1 and -Xmaxf0.3 are. Anyone know? Also, is there a way to start tomcat and have it spit out what JAVA_OPTS it's using? MinHeapFreeRatio and MaxHeapFreeRatio (divided by 100). This is used, in case you configure your maximum heap size

Re: Redirect

2007-12-03 Thread Rainer Jung
Andrew Hole wrote: Hello! On an Apache server, I would like to have a Redirect from a URL to other URL not on my server. The redirect is temporary, and therefore I would prefer if the original URL appeared in the visitor's browser's Address Bar, as opposed to the URL of the site to which he/she

Re: Domino DSAPI-Tomcat

2007-11-30 Thread Rainer Jung
Martin Luna wrote: Hi, My name is Martin, I'm from Argentina and I'm a IBM Lotus Domino developer. I'm trying to use Tomcat as my JSP server. I've seen that there used to be a dsapi_redirector.dll for Tomcat-Domino integration, but I can't find it and I'm not sure is still working. Can you help

Re: clustering iis with JK

2007-11-28 Thread Rainer Jung
Dmitry Beransky wrote: Hi, Is it possible to implement the following setup with JK/isapi_redirect? 1. Two clustered IIS instances 2. Two load-balanced Tomcat instances 3. Each IIS uses JK to forward requests to two load-balanced Tomcat instances I know how to do each individual item in

Re: clustering iis with JK

2007-11-28 Thread Rainer Jung
make sure that #3 from above does not happen? Thanks Dmitry Regards, Rainer On Nov 28, 2007 3:02 AM, Rainer Jung [EMAIL PROTECTED] wrote: Dmitry Beransky wrote: Hi, Is it possible to implement the following setup with JK/isapi_redirect? 1. Two clustered IIS instances 2. Two load

Re: mod_proxy_html setup

2007-11-27 Thread Rainer Jung
Rocco Scappatura wrote: I have some problem after reversing proxy a web app. After many research I inferred that mod_proxy_html could solve the problem of accessing my web app through reverse proxy. My big clue is to: 1) find the exact instructions to setup mod_proxy_html 2) find all the

Re: mod_jk to remote host

2007-11-26 Thread Rainer Jung
John Richard Moser wrote: here are my configuration files. Logs are compressed. I had a look at the log file. You are using version 1.2.18. We are at the moment at version 1.2.25 with a very long changelog. Do yourself and us a favour and use the most recent version 1.2.25. For me it

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I do a make

2007-11-26 Thread Rainer Jung
Blumlein,Richard wrote: Hello Rainer, Hope you had a nice Thanksgiving? That's not really tradition in Germany, at least not with turkeys. But yes, had a nice weekend. Does the coredump also occur, if you set JkLogLevel to info or error? Yes I tried changing to info or error and both got

Re: mod_jk to remote host

2007-11-26 Thread Rainer Jung
John Richard Moser wrote: Rainer Jung wrote: John Richard Moser wrote: here are my configuration files. Logs are compressed. I had a look at the log file. You are using version 1.2.18. We are at the moment at version 1.2.25 with a very long changelog. Do yourself and us a favour and use

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I do a make

2007-11-26 Thread Rainer Jung
Blumlein,Richard wrote: gdb /usr/sbin/httpd core GNU gdb 6.0 Copyright 2003 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type show copying to see the

Re: I'm desparate with an Apache problem and ReverseProxy

2007-11-22 Thread Rainer Jung
Christoph P. Kukulies wrote: Thanks for the replies. I managed it finally with ProxyPass and ProxyPassReverse What has caused all the headache was the fact that the backend server (application server that ran the forum) had a html meta refresh tag in it's /index.html and that did not get

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I dp a make.

2007-11-21 Thread Rainer Jung
Hello Richard, Blumlein,Richard wrote: Hello Rainer and group. I tried using gmake instead of make and I got much further. Good. In the instdso.sh script it checks to see if AIX. If AIX it removes the component. Not sure if this is ok. The mv fails since it cannot find mod_jk.so.0 in the

Re: mod_jk compatibilities between versions.

2007-11-21 Thread Rainer Jung
rahul wrote: | rahul wrote: | I am trying to integrate mod_jk with the apache 2.2 package | distribution in solaris. | I would like to know what would be the versions that can have | incompatibilities with the previous versions (both API and configuration) | Check the change log: |

Re: Wr Rd in the JK status report

2007-11-21 Thread Rainer Jung
Dmitry Beransky wrote: Hi, I'm having problems understanding the legend text for Wr Rd columns of the JK status report. What exactly do they mean? Here's a concrete example: Name Type Host Addr Act Stat D F M V Acc Err CE Wr Rd Busy Max Route RR Cd Rs static_1 ajp13 localhost:8012

Re: isapi_redirect+IIS+tomcat basic authentication

2007-11-21 Thread Rainer Jung
] jk_isapi_plugin.c (1528): service() returned OK Best regards, Nikolay Diulgerov Network Administrator E-mail: [EMAIL PROTECTED] Telephone : +33 4 89 87 77 77 Fax : +33 4 89 87 77 00 Web: http://www.codix-france.com Rainer Jung wrote: Niki Diulgerov wrote: Yes it works when I connect

Re: ApacheTomcat Connector mod_jk, receiving 0711-244 ERROR when I do a make.

2007-11-21 Thread Rainer Jung
Blumlein,Richard wrote: Hello Rainer, First, that for all the help.. The examples I gave are from the make. The confusing part is some docs just show doing the configure, make, copy the mod, make clean on the Apache site docs. I have also seem some docs show doing configure, make, make

<    10   11   12   13   14   15   16   17   18   19   >