[Mono-bugs] [Bug 76607][Nor] Changed - ArguementNullException with
System.DirectoryServices
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu Dec 8 10:38:13 EST 2005
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 lorenb at mmgsecurity.com.
http://bugzilla.ximian.com/show_bug.cgi?id=76607
--- shadow/76607 2005-11-23 00:07:19.000000000 -0500
+++ shadow/76607.tmp.11380 2005-12-08 10:38:13.000000000 -0500
@@ -1,13 +1,13 @@
Bug#: 76607
Product: Mono: Class Libraries
Version: 1.1
OS: unknown
OS Details: Ubuntu Breezy w/ mono from go-mono.com
-Status: RESOLVED
-Resolution: FIXED
+Status: REOPENED
+Resolution:
Severity: Unknown
Priority: Normal
Component: System
AssignedTo: mono-bugs at ximian.com
ReportedBy: forgue at oakland.edu
QAContact: mono-bugs at ximian.com
@@ -140,6 +140,63 @@
------- Additional Comments From miguel at ximian.com 2005-11-23 00:07 -------
Please try CVS and reopen the bug if you still have issues.
Am unable to confirm.
+
+------- Additional Comments From lorenb at mmgsecurity.com 2005-12-08 10:38 -------
+I opened this another bug report on this, before I knew about this bug:
+http://bugzilla.ximian.com/show_bug.cgi?id=76708.
+
+I see in the comments for this there is supposed to be a fix in CVS. I
+did a check on 2005-12-08 and it's still broken with my test program.
+
+==[ cut here ]==
+
+using System;
+using Novell.Directory.Ldap;
+
+public class TestLdapSsl
+{
+ static void Main (string[] args)
+ {
+ LdapConnection conn = new LdapConnection ();
+ conn.SecureSocketLayer = true;
+
+ conn.Connect (args[0], 636);
+ conn.Bind ("", "");
+
+ Console.WriteLine ("Bind Successfull");
+
+ conn.Disconnect ();
+ }
+}
+
+==[ cut here ]==
+
+Output:
+
+$ mcs ssl.cs -r:Novell.Directory.Ldap
+$ mono ssl.exe 10.0.0.2
+
+Unhandled Exception:
+System.Resources.MissingManifestResourceException: Could not find any
+resource appropiate for the specified culture or its parents. Make
+sure "Novell.Directory.Ldap.Utilclass.ResultCodeMessages.resources"
+was correctly embedded or linked into assembly "Novell.Directory.Ldap".
+in <0x00459> System.Resources.ResourceManager:InternalGetResourceSet
+(System.Globalization.CultureInfo culture, Boolean Createifnotexists,
+Boolean tryParents)
+in <0x0006e> System.Resources.ResourceManager:GetString (System.String
+name, System.Globalization.CultureInfo culture)
+in <0x00116>
+Novell.Directory.Ldap.Utilclass.ResourcesHandler:getResultString
+(Int32 code, System.Globalization.CultureInfo locale)
+in <0x00013>
+Novell.Directory.Ldap.Utilclass.ResourcesHandler:getResultString
+(Int32 code)
+in <0x00014> Novell.Directory.Ldap.LdapException:resultCodeToString ()
+in <0x000aa> Novell.Directory.Ldap.LdapException:getExceptionString
+(System.String exception)
+in <0x00021> Novell.Directory.Ldap.LdapException:ToString ()
+
More information about the mono-bugs
mailing list