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=43433>.
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=43433


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




------- Additional Comments From [EMAIL PROTECTED]  2007-09-20 12:33 -------
Your configuration is wrong.

1. You need to set the route parameter for each BalancerMember, e.g.:

BalancerMember http://200.40.1.220:8888/TESTSESSION route=wl1
BalancerMember http://10.197.159.200:8888/TESTSESSION route=wl2

2. Weblogic would need to add the name of the route to the session id separated
by a dot. So session ids created on 200.40.1.220 should end on .wl1, session ids
created on 10.197.159.200 should end on .wl2.
But Weblogic does NOT do this. So you cannot use JSESSIONID for maintaining
stickyness.

You could try something like the following (requires mod_headers) to maintain
stickyness via the cookie WL. This approach REQUIRES cookies.


ProxyPass /TESTSESSION balancer://my-sticky stickysession=WL 
nofailover=On

<Proxy balancer://my-sticky>
Header add Set-Cookie "WL=WL.%{BALANCER_WORKER_ROUTE}e; path=/"
env=BALANCER_ROUTE_CHANGED
BalancerMember http://200.40.1.220:8888/TESTSESSION route=wl1
BalancerMember http://10.197.159.200:8888/TESTSESSION route=wl2
</Proxy>

Please continue further discussions regarding this on the users list
(http://httpd.apache.org/lists.html#http-users)

-- 
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