[Mono-bugs] [Bug 58190][Min] Changed - WebClient.OpenRead() failure with validNetworkCredential object

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 18 May 2004 00:19:29 -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 gonzalo@ximian.com.

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

--- shadow/58190	2004-05-18 00:18:31.000000000 -0400
+++ shadow/58190.tmp.18080	2004-05-18 00:19:29.000000000 -0400
@@ -1,13 +1,13 @@
 Bug#: 58190
 Product: Mono: Class Libraries
 Version: unspecified
 OS: unknown
 OS Details: Microsoft Windows 2000
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: NOTABUG
 Severity: Unknown
 Priority: Minor
 Component: System
 AssignedTo: gonzalo@ximian.com                            
 ReportedBy: apicetti@hotmail.com               
 QAContact: mono-bugs@ximian.com
@@ -61,6 +61,26 @@
 Additional Information:
 
 ------- Additional Comments From gonzalo@ximian.com  2004-05-18 00:18 -------
 Created an attachment (id=7737)
 the tcpdump session i get
 
+
+------- Additional Comments From gonzalo@ximian.com  2004-05-18 00:19 -------
+This is the program i used to get the tcpdump output above.
+--------
+using System;
+using System.IO;
+using System.Net;
+ 
+class Test {
+        static void Main ()
+        {
+                WebClient client = new WebClient ();
+                client.Credentials = new NetworkCredential
+("gonzalo","********","Hola lalo");
+                Stream st = client.OpenRead
+("http://127.0.0.1/mydir/index.html");
+        }
+}
+
+----