You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2008/08/01 19:29:47 UTC

DO NOT REPLY [Bug 39203] mod_proxy_balancer does not treat trailing slash like Proxypass directive

https://issues.apache.org/bugzilla/show_bug.cgi?id=39203


Nick Stielau <ni...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nick.stielau@gmail.com




--- Comment #9 from Nick Stielau <ni...@gmail.com>  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: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org