asp.net - IIS Authentication across servers -
my production environment involves pair of iis 6 web servers, 1 running legacy .net 1.1 applications , other running .net 2.0 applications. cannot install .net 2.0 alongside 1.1 on same machine because tightly-regulated 'validated system' , present bureaucratic nightmare revalidate.
websites on both servers use basic authentication against active directory user accounts.
is possible web application on 1.1 server securely redirect user page served on 2.0 server, without requiring users re-authenticate?
no, because you're not using cookies authentication in scenario, scaleovenstove's link won't help.
basic authentication sends login information in http headers every request, it's browser this, when sees new server, new password request.
(or indeed suggested change authentication on both systems support single signon)
Comments
Post a Comment