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=21275>. 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=21275 Can't open file in root directory. ------- Additional Comments From [EMAIL PROTECTED] 2003-07-03 15:04 ------- The bottom line is that Windows and Unix don't have terribly congruent ideas about pathnames. The only really portable thing to do is to convert your platgform-dependent paths to platform-independent URI's using the file: protocol (e.g. "c:\my files\file.xml" -> "file:///c/my%20files/file.xml"). Once you've done this, you're code should work across platforms, parsers, and parser versions. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
