Board index » Web Programming » having issues using integrated windows authentication

having issues using integrated windows authentication

Web Programming126
I have a asp.net application running on one of my webservers. This

particular app needs to use integrated windows authentication only.

Which it does, and it works, however, it only works when entering the

iis site name in the ie browser .



for example

http://responsemgtinter/contentmanagement/SearchQuestion.aspx works

fine however if i enter



responsemgtinter.mysite.com/contentmanagement/SearchQuestion.aspx

i get a prompt to enter user login information, I do not want this

to come up, the users should just be able to go to this link without

having to manually authenticate. is there a way around this issue?


-
 

Re:having issues using integrated windows authentication

The issue is with your configuration of IE.



IE considered dotted-IP (dotted.IP.address)">dotted.IP.address) to be in the

Internet Zone, which does not have automatic login by default.

Meanwhile, http://responsemgtinter is considered to be in the Intranet

Zone, which does have automatic login.



To "get rid of the prompt", you have to change the user's IE settings

to make it auto-login with a dotted-IP address.



No, you cannot automatically do this from the server. That would be

considered a security vulnerability, for the server to be able to

change a client's security setting like that.







//David

w3-4u.blogspot.com">w3-4u.blogspot.com

blogs.msdn.com/David.Wang">blogs.msdn.com/David.Wang

//







rklick@gmail.com wrote:

Quote
I have a asp.net application running on one of my webservers. This

particular app needs to use integrated windows authentication only.

Which it does, and it works, however, it only works when entering the

iis site name in the ie browser .



for example

http://responsemgtinter/contentmanagement/SearchQuestion.aspx works

fine however if i enter



responsemgtinter.mysite.com/contentmanagement/SearchQuestion.aspx">responsemgtinter.mysite.com/contentmanagement/SearchQuestion.aspx

i get a prompt to enter user login information, I do not want this

to come up, the users should just be able to go to this link without

having to manually authenticate. is there a way around this issue?



-