[Mono-bugs] [Bug 58763][Cri] Changed - XmlDocument.Load fails

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 20 May 2004 17:45:39 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by christoph@apiviewer.de.

http://bugzilla.ximian.com/show_bug.cgi?id=58763

--- shadow/58763	2004-05-20 17:01:15.000000000 -0400
+++ shadow/58763.tmp.24062	2004-05-20 17:45:39.000000000 -0400
@@ -103,6 +103,24 @@
 
 ------- Additional Comments From duncan@ximian.com  2004-05-20 16:54 -------
 You want to print out 'download', not 'Buffer'.
 
 ------- Additional Comments From Christoph@ApiViewer.de  2004-05-20 17:01 -------
 oops... you're right.
+
+------- Additional Comments From Christoph@ApiViewer.de  2004-05-20 17:45 -------
+It look like I found the bug... 
+ 
+I use the follwing source: 
+ 
+String Location = "Paderborn, Germany"; 
+Uri sURI = new Uri("http://xoap.weather.com/search/search?where=" * 
+Location); 
+ 
+.NET Framework returns: 
+http://xoap.weather.com/search/search?where=Paderborn,%20Germany 
+ 
+Mono returns: 
+http://xoap.weather.com/search/search?where=Paderborn, Germany 
+ 
+But with a non canocalized URL the xmlDocument.Load(), 
+WebClient.DownloadData(...) and all other Web-Methods will fail.