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





------- Additional Comments From [EMAIL PROTECTED]  2003-06-30 20:55 -------
It looks like normalize() is doing the correct thing, but URI.toString() does
not use the normalized path.  Try this:

       URI uri = new URI("http", null, "host", -1, "/tmp/../yo", null, null);
       uri.normalize();
       System.out.println(uri);
       System.out.println(uri.getPath());

I will look into toString() and get back to you.

Mike

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to