[Mono-bugs] [Bug 69118][Wis] Changed - Accessing https: protocol raises exceptions
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 4 Nov 2004 22:59:35 -0500 (EST)
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 devslashnull@gmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=69118
--- shadow/69118 2004-11-04 22:29:36.000000000 -0500
+++ shadow/69118.tmp.4272 2004-11-04 22:59:35.000000000 -0500
@@ -1,14 +1,14 @@
Bug#: 69118
Product: Mono: Class Libraries
Version: 1.1
-OS:
+OS: unknown
OS Details: Mac OS 10.3.5
Status: NEW
Resolution:
-Severity:
+Severity: Unknown
Priority: Wishlist
Component: Sys.Web
AssignedTo: mono-bugs@ximian.com
ReportedBy: devslashnull@gmail.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -53,6 +53,21 @@
How often does this happen?
Every time.
Additional Information:
Accessing the internet through Airport using WEP.
+
+------- Additional Comments From devslashnull@gmail.com 2004-11-04 22:59 -------
+Test case:
+using System;
+using System.Net;
+
+public class TestSSL {
+ public static void Main( string[] args ) {
+ WebClient web = new WebClient();
+ Console.WriteLine(
+System.Text.Encoding.ASCII.GetString( web.DownloadData(
+"https://www.paypal.com/" ) ) );
+ }
+}
+