Hi,
And you are sure that ApacheDS runs on your machine on port 10389?
Could you try to get a more details error message?
Could you find out which line of your code causes the error?
A last advice is to use capture the network traffic, for example using
Wireshark (but afaik it is not possible to capture the localhost
interface on Windows).
Kind Regards,
Stefan
pepe_gaetano schrieb:
> Hi
>
> I have a problem with LDAP, I use apache directory server and I would add a
> new user ....I use Visual Studio and the code
>
> is:
>
> public static void prova(string FullName)
> {
> DirectoryEntry container;
> DirectoryEntries ChildEntry;
>
> container = new
> DirectoryEntry("LDAP://localhost:10389/cn=user1,ou=users,ou=system",
> "admin", "secret");
>
> try
> {
>
> ChildEntry = container.Children;
> DirectoryEntry NewEntry = ChildEntry.Add("cn=" + FullName,
> "user");
> NewEntry.CommitChanges();
> NewEntry.Close();
> }
> catch (Exception ex)
> {
> throw new Exception("Error " + ex.Message);
> }
> }
>
> The problem is that I have this type of error:The directory service is not
> available
> somebody could help me?