DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=37753>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=37753

           Summary: [PATCH]mod_proxy_balancer Stickysession that uses URL
                    doesn't move
           Product: Apache httpd-2.0
           Version: 2.2.0
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: PatchAvailable
          Severity: major
          Priority: P1
         Component: mod_proxy_balancer
        AssignedTo: [email protected]
        ReportedBy: [EMAIL PROTECTED]


It doesn't move in stickysession when not Cookie but URL is used when 
stickysession of the ProxyPass directive is specified when mod_proxy_balancer 
is used. 

Patch that enables operation is put up to the following. 
Please apply it to mod_proxy_bakancer.c. 

--- mod_proxy_balancer-old.c    2005-12-02 20:04:48.000000000 +0900
+++ mod_proxy_balancer.c        2005-12-02 20:05:51.000000000 +0900
@@ -113,7 +113,7 @@
     char *path = NULL;

     for (path = strstr(url, name); path; path = strstr(path + 1, name)) {
-        path += (strlen(name) + 1);
+        path += strlen(name);
         if (*path == '=') {
             /*
              * Session path was found, get it's value

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to