Robert said:
I have 2 web servers in a single domain. I want to enable
single login so that users are allowed to access the 2nd
server without having to re-enter login info. Is there a
way to set this up? I don't want to enable anonymous
access.
You have to develop some custom solution with maintaining logon state
and logon session state in database, and share information from this
database betweeknd servers. For exammple - user authenticates on first
server, this server is making an entry in database with logon time, IP
and so on - after 10 minutes user is accessing other server and the
pages on this server are checking his logon state at the database, if he
is in the logon table he is allowed to access pages, in other case he
must authenticate against this page.
Off course there is a problem with identification of a user - You can
use combination of logon namefrom domain style account and IP address,
coookies ...
Such solution is of course not very good, it causes a lot of troubles -
especially with security issues - but If You need it.