Ask a Question related to ASP.NET Security, Design and Development.
-
Hriday #1
Security Problem With Active Directory
Hi there,
I want to get root path for my Active directory. My Active Directory Machine and Web server are on different phisical machine in the same domain. When I execute bellow code form my Web server machine in a web Application,I get error that The specified domain either does not exist or could not be contacted.
Dim RootDSE As New
DirectoryServices.DirectoryEntry("LDAP://RootDSE")
MsgBox(RootDSE.Properties("DefaultNamingContext"). Value)
But the same code gives my root path of AD as
DC=AD,DC=MyComp,DC=Com when I excute it from a Windows
Applicatoin. Why is it so...?
same code gives right result from Windows App, but gives
above error from my Web Application...is this because of
there is some (security)problem of my IIS ? otherwise what is
different in accessing AD through Windows App and Web App..
How can I get or set my IIS root path to my Active
directory?
any help highelly appreciated.
Thanking you..
Hriday.
___
Newsgroups brought to you courtesy of [url]www.dotnetjohn.com[/url]
Hriday Guest
-
I have a problem with LDAP (Active Directory).
Hi, I would like that they were helping me in a problem: I need to authenticate my users inside the domain with the Active Directory without the... -
Get UserGroup of Active Directory to control the security
Hi, I have an ASP.Net Intranet App with C#. I don't need to ask users about by User and PWD since they are already logged in. This is acheived... -
Obsucre Active Directory Problem
We have a very obscure problem relating to Active Directory. We have an application server, Silver Stream, which pulls user names from the... -
user security policy active directory
I want to apply a policy to a single user in our domain. For example, take away the run command, force background, etc. Like you could do with... -
Local v. Domain/Active Directory Security
I have what I believe is fairly common. I am running XP Pro on a home network. I have 4 computers connected to a LinkSys router/switch. I use... -
Joe Kaplan \(MVP - ADSI\) #2
Re: Security Problem With Active Directory
It is a security context problem. ASP.NET typically runs as a local machine
account instead of a domain account, and ADSI/S.DS needs the domain security
context to infer a domain controller when you use serverless binding.
You should either specify a specific domain controller DNS name, specify the
DNS name of the domain you want to use, or change your underlying security
model in ASP.NET to use a domain account. For the first two options, you
binding string would change to:
LDAP://mydc.mydomain.com/rootdse
LDAP://mydomain.com/rootdse
More details here:
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;329986[/url]
Joe K.
"Hriday" <hriday_rai@yahoo.com> wrote in message
news:%23JKcFkMYEHA.3420@TK2MSFTNGP12.phx.gbl...Machine and Web server are on different phisical machine in the same domain.> Hi there,
>
> I want to get root path for my Active directory. My Active Directory
When I execute bellow code form my Web server machine in a web Application,I
get error that The specified domain either does not exist or could not be
contacted.>
> Dim RootDSE As New
> DirectoryServices.DirectoryEntry("LDAP://RootDSE")
> MsgBox(RootDSE.Properties("DefaultNamingContext"). Value)
>
>
> But the same code gives my root path of AD as
> DC=AD,DC=MyComp,DC=Com when I excute it from a Windows
> Applicatoin. Why is it so...?
>
> same code gives right result from Windows App, but gives
> above error from my Web Application...is this because of
> there is some (security)problem of my IIS ? otherwise what is
> different in accessing AD through Windows App and Web App..
>
> How can I get or set my IIS root path to my Active
> directory?
>
> any help highelly appreciated.
>
> Thanking you..
> Hriday.
>
>
> ___
> Newsgroups brought to you courtesy of [url]www.dotnetjohn.com[/url]
Joe Kaplan \(MVP - ADSI\) Guest



Reply With Quote

