Har problem med följande ASP.NET-applikationer körs med kontot ASPNET. Det kan kanske vara så att ASPNET-kontot inte har samma rättigheter som kontot du kör Windowsapplikationen med? Tänk på att om du ökar rättigheterna för ASPNET-kontet skapar du ett litet säkerhetshål.Active Directory
<code>
' Bind to a specific user.
Dim entry As New DirectoryEntry("LDAP://CN=kalle balle,OU=Users,DC=xxx,DC=xxx,DC=xxx")
' Create a DirectorySearcher object.
Dim mySearcher As New DirectorySearcher(entry)
' Use the FindOne method to find the object, which in this case, is the user
' indicated by User Name and assign it to a SearchResult.
Dim ResEnt As SearchResult = mySearcher.FindOne()
' Assign a property name to propKey.
Dim propKey As String
' Assign a property name to propKey.
For Each propKey In ResEnt.Properties.PropertyNames
' Assign the property value to prop.
Dim prop As [Object]
' Assign the property value to prop.
For Each prop In ResEnt.Properties(propKey)
' Handle results. Be aware that the following WriteLine
' only returns readable results for properties that are strings.
'Console.WriteLine("{0}:{1}", propKey, prop.ToString())
Next prop
Next propKey
' Add error handling.
</code>
När jag kör koden i en windows application så knackar den ut infomationen men när jag kör den som en asp.net sida så får jag fel, Den angivna domänen finns inte eller kunde inte kontaktas.
Jag har katalogsäkerhet satt till integrerad windows autensiering.
Är det någon process som inte har rättigheter eller vad kan det handla om.Sv: Active Directory