https://issues.apache.org/bugzilla/show_bug.cgi?id=39203
Nick Stielau <[EMAIL PROTECTED]> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |[EMAIL PROTECTED]
--- Comment #9 from Nick Stielau <[EMAIL PROTECTED]> 2008-08-01 10:29:46 PST
---
I think this is still a problem, because you cannot achieve the same behavior
using the balancer as you can without using it:
Not using balancer
ProxyPass /MyService http://example.com:20000/MyService
ProxyPassReverse /MyService http://example.com:20000/MyService
this sends a request for /MyService?wsdl to
http://example.com:2000/MyService?wsdl
Using the balancer
ProxyPass /MyService balancer://playlist_service_balancer
<Proxy balancer://playlist_service_balancer>
BalancerMember http://example.com:10000/MyService
BalancerMember http://example.com:20000/MyService
ProxySet lbmethod=byrequests
</Proxy>
There are no trailing slashing at all, yet this sends a request for
/MyService?wsdl to http://example.com:2000/MyService/, forcing a trailing
slash.
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]