I have seen similar questions but wanted to see if this would be possible.
We have two separate IIS servers with separate web sites. They both have
folders on the web sites that have the same permissions for both sites.
Would it be possible to sign in to the protected web folder on one site and
not have the browser request you to sign in on the second web site since you
have all ready signed into the first? I have read discussion regarding
'single sign on' but was not clear on it.
Thanks for any help.
On Jul 28, 12:13 pm, Gary Contois
<GaryCont...@discussions.microsoft.com> wrote:
> I have seen similar questions but wanted to see if this would be possible.
> We have two separate IIS servers with separate web sites. They both have
[quoted text clipped - 8 lines]
> --
> Gary Contois
Most authentication protocols only protect its own realm, scoped to
the website -- i.e. the login is valid only for its own website and
not another. That behavior is secure and by-design.
You'd have to use an authentication which supports "single sign on"
through multiple websites, like Windows LiveID, or create your own
protocol which either performs auto-login from the client or
delegation on the server, to get the behavior of "Single sign on".
You'd also need an authorization and ACL system that spans multiple
machines securely. You get this behavior with Windows Active Directory
and Kerberos. Or Windows LiveID. Or any third-party implementation.
FYI: Why would one website trust the sign-in performed by the other
website? Suppose the first website is "Hackers.com" -- would you want
the second website to blindly trust the first?
//David
http://w3-4u.blogspot.com
http://blogs.msdn.com/David.Wang
//