DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=37348>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=37348 [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|[EMAIL PROTECTED] |dev@ant.apache.org ------- Additional Comments From [EMAIL PROTECTED] 2005-11-05 03:39 ------- Hello Radim, I think that a part of the problem might lie in the class javax.xml.DocumentBuilder which is part of the JDK. the method DocumentBuilder#parse does this : String uri = "file:" + f.getAbsolutePath(); if (File.separatorChar == '\\') { uri = uri.replace('\\', '/'); } Instead, it should do this : String uri = f.toURI().toASCIIString(); At least, this change allows to parse a document containing an entity include when like in your case both the main XML document and the entity include are located in a path containing non ASCII chars, such as c:/änt I have filed a bug with Sun with what I have found. I am closing this report as INVALID. Reopen this report only if you can prove that ant is faulty. -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. You are on the CC list for the bug, or are watching someone who is. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]