DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15016>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15016 HttpMethodBase does not compile on JDK prior to 1.3 Summary: HttpMethodBase does not compile on JDK prior to 1.3 Product: Commons Version: Nightly Builds Platform: All OS/Version: All Status: NEW Severity: Critical Priority: Other Component: HttpClient AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] reason is the use of URL.getPath() and URL.getQuery() within method processRedirectResponse. should use URIUtil.getPath and URIUtil.getQuery instead. so, HttpMethodBase around line 952: //update the current location with the redirect location setPath(URIUtil.getPath(redirectUrl.toString())); setQueryString(URIUtil.getQuery(redirectUrl.toString())); thanks, marius -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>