wallinaspne
10-13-2003, 03:55 AM
I'm developing a application farm on www.wallinasp.net but my centralized login, like single sign-on, using Forms authentication does not accurately redirects me to any sub application on my site.
Currently, as a test, I created 3 web applications.
www.wallinasp.net
www.wallinasp.net/Test1
www.wallinasp.net/Test2
I have a centralized login.aspx page in www.wallinasp.net
Test1 is using the authorization parameters for the login page and Test2 is using another authorization (Windows)
Below are the web.config for the three applications.
www.wallinasp.net - web.config
<authentication mode="Forms">
<forms name="loginCookie" path="/" loginUrl="/login.aspx" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
www.wallinasp.net/Test1 - web.config
[nothing = inherits from parent]
www.wallinasp.net/Test2 - web.config
<authentication mode="Windows" />
<authorization>
<allow users="*" />
</authorization>
Thank you,
Anders Wallin
Solution Architect, MCSD
Currently, as a test, I created 3 web applications.
www.wallinasp.net
www.wallinasp.net/Test1
www.wallinasp.net/Test2
I have a centralized login.aspx page in www.wallinasp.net
Test1 is using the authorization parameters for the login page and Test2 is using another authorization (Windows)
Below are the web.config for the three applications.
www.wallinasp.net - web.config
<authentication mode="Forms">
<forms name="loginCookie" path="/" loginUrl="/login.aspx" />
</authentication>
<authorization>
<deny users="?" />
</authorization>
www.wallinasp.net/Test1 - web.config
[nothing = inherits from parent]
www.wallinasp.net/Test2 - web.config
<authentication mode="Windows" />
<authorization>
<allow users="*" />
</authorization>
Thank you,
Anders Wallin
Solution Architect, MCSD