Re: Apache http / mod_rewrite / mod_jk

2004-04-08 Thread Christopher Schultz
Yoav, Do you know if this is supposed to work? JkMount /myapp/*;jsessionid=* workerX It has allegedly worked for some other people. I don't know if it's supposed to work. Is it difficult to test? I have tested it. It does not work for me. Others claim that it does work. I'm wondering if I

Re: Apache http / mod_rewrite / mod_jk

2004-04-08 Thread Christopher Schultz
Kenneth, Instead of directly redirect to mod_jk, can you just use mod_write to insert a directory prefix which can trigger mod_jk? That's an idea. If I did that, how could I get Tomcat to figure out the right path, then? Can I do a reverse rewrite in Tomcat? Thanks, -chris signature.asc

Re: Apache http / mod_rewrite / mod_jk

2004-04-08 Thread Christopher Schultz
All, JkMount /myapp/*;jsessionid=* workerX This particular directive seems to be ignored on my setup. I guess I'll just look at the module source and figure it out myself. It turns out that mod_jk does not consider ;jsessionid= part of the URL when it does matching. :( From mod_jk.log:

Re: Apache http / mod_rewrite / mod_jk [hacked SOLUTION]

2004-04-08 Thread Christopher Schultz
All, Here is my solution to the jsessionid issue discussed in this thread. The problem is that when Tomcat encodes URLs without knowing if the browser supports cookies, it adds ;jsessionid=BLAHBLAH to each encoded URL. This is perfectly normal behavior. However, when using Apache httpd, Apache

Re: Apache http / mod_rewrite / mod_jk [hacked SOLUTION]

2004-04-08 Thread Christopher Schultz
All, There was a bug in the patch that I posted. Below is the final patch I will post to the group. -chris *** common/jk_uri_worker_map.c 2003-09-06 11:37:21.0 -0400 --- common/jk_uri_worker_map.c.new 2004-04-08 14:23:10.0 -0400 *** *** 80,85 --- 80,86

Apache http / mod_rewrite / mod_jk

2004-04-07 Thread Christopher Schultz
All, The archives show this questions being asked all the time, but with no useful responses. Please let me know if this is a known unresolved or unresolvable issue. All solutions posted anywhere for jsessionid makes Apache go beaindead apparently use a mod_rewrite incantation similar to the

RE: Apache http / mod_rewrite / mod_jk

2004-04-07 Thread Shapira, Yoav
Howdy, I have no clue as to your actual question, but I'm curious: The archives show this questions being asked all the time, but with no How do you define all the time in the statement above? Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and

Re: Apache http / mod_rewrite / mod_jk

2004-04-07 Thread Christopher Schultz
Yoav, I have no clue as to your actual question, but I'm curious: The archives show this questions being asked all the time, but with no How do you define all the time in the statement above? Like this: Dubious responses: http://www.mail-archive.com/[EMAIL PROTECTED]/msg84808.html

RE: Apache http / mod_rewrite / mod_jk

2004-04-07 Thread Shapira, Yoav
Hi, Like this: snip of links / OK, that's what I figured. I wouldn't call once or twice a year all the time but that's besides the point, as the issue undoubtedly exists ;) Do you know if this is supposed to work? JkMount /myapp/*;jsessionid=* workerX It has allegedly worked for some other

RE: Apache http / mod_rewrite / mod_jk

2004-04-07 Thread Kwan, Kenneth Y
Instead of directly redirect to mod_jk, can you just use mod_write to insert a directory prefix which can trigger mod_jk? Kenneth -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 3:28 AM To: Tomcat Users List Subject: Apache http