Autor Beitrag
Wolle92
ontopic starontopic starontopic starontopic starontopic starofftopic starofftopic starofftopic star
Beiträge: 1296

Windows Vista Home Premium
Delphi 7 PE, Delphi 7 Portable, bald C++ & DirectX
BeitragVerfasst: Mo 30.06.08 12:11 
Hallo,

ich muss eine Internetseite schreiben, die Informationen über Mitarbeiter aus einr AD-Datenbank liest...

Aber gleich beim lernen von AD-Zugriffen hab ich schon Probleme:

ausblenden C#-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
protected void Page_Load(object sender, EventArgs e)
        {
            DirectoryEntry de = new DirectoryEntry("LDAP://biedc007.de.mgp.int/OU=MIT,OU=MIT-User,DC=de,DC=mgp,DC=int","mgpext01","*********");
            foreach(DirectoryEntry child in de.Children)
            {
                Response.Write(child.Name);
            }
        }


Ich bekomme beim Ausführen den Fehler "There is no such object on the server" an der markierten Stelle...

Weiß jemand, woran das liegt? Die LDAP-Domain ist definitiv richtig, username und passwort auch...

Wolle

_________________
1405006117752879898543142606244511569936384000000000.
Wolle92 Threadstarter
ontopic starontopic starontopic starontopic starontopic starofftopic starofftopic starofftopic star
Beiträge: 1296

Windows Vista Home Premium
Delphi 7 PE, Delphi 7 Portable, bald C++ & DirectX
BeitragVerfasst: Mo 30.06.08 12:35 
Problem gelöst, das MIT und das MIT-User waren verkehrt herum

_________________
1405006117752879898543142606244511569936384000000000.