You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by Michael Becke <be...@u.washington.edu> on 2003/01/12 19:15:26 UTC

[PATCH]HttpMethodBase URI parse

Attached is a patch that fixes a problem with HttpMethodBase where some 
URIs will not be parsed correctly.  The previous code was using 
java.net.URL to parse the String URI and would fail if the protocol was 
unknown to URL.  Since the protocol values we use don't necessarily 
have to correspond to those used by URL this code has been replaced by 
the parsing code of URI.

Enjoy,

Mike