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=21201>. 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=21201 URI.normalize() error Summary: URI.normalize() error Product: Commons Version: 1.0 Alpha Platform: Other OS/Version: Other Status: NEW Severity: Minor Priority: Other Component: HttpClient AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] code: ---------------------------- import org.apache.commons.httpclient.URI; class Main { publi� static void main(String[] args) throws Exception { URI uri = new URI("http", null, "host", -1, "/tmp/../yo", null, null); uri.normalize(); System.out.println(uri); } } /// end of Main ---------------------------- prints: http://host/tmp/../yo instead of http://host/yo --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
