Ask a Question related to ASP.NET Security, Design and Development.
-
Andrey Skvortsov #1
Single sign-on with .ASPXAUTH cookie
How I can issue web forms authentification cookie that can be used by both applications located on same server(server wide asp.net cookie)?I've one users' domain but asp.net encrypts .ASPXAUTH cookies differently for these two applications
What can I do with it?
Andrey Skvortsov Guest
-
Forms Authentication - Single Sign-On
I am implementing a single sign-on system in ASP.Net. The technique I am using is as defined by Paul Sheriff, in the MSDN article Single Sign-On... -
VPN Single-sign on?
Single sign-on from VPN? We have an environment using a Nortel VPN login and want to be able to avoid a login for that user to an asp.net... -
Single sign-on w/ASP?
I'm building a few web sites that will use distinct domain names but will reside on the same server, at the same IP address, in the same application... -
php and apache...single sign on
I would like to piggyback on an Apache realm/dialog authentication and feed these credentials to a mysql connection (or connection to anything... -
Single sign-on solution
Hi All, I am looking for single sign-on solution from Forms 6i client on Win XP to 9i database on HP-UX 11i. Could anyone give me some... -
Paul Glavich [MVP - ASP.NET] #2
Re: Single sign-on with .ASPXAUTH cookie
Make sure the cookie name and path are the same. Also, in the
machine.config, it will have the encryption key set to something like :-
<machineKey validationKey="AutoGenerate,IsolateApps"
decryptionKey="AutoGenerate,IsolateApps" validation="SHA1" />
The "isolateApps" means that a different key will be AutoGenerated for
*each* application. You can either remove the isolateApps option or insert a
specific key value for it to use.
--
- Paul Glavich
Microsoft MVP - ASP.NET
"Andrey Skvortsov" <anonymous@discussions.microsoft.com> wrote in message
news:9705438A-78E2-43FB-A0E6-EBBBFF705E09@microsoft.com...applications located on same server(server wide asp.net cookie)?I've one> How I can issue web forms authentification cookie that can be used by both
users' domain but asp.net encrypts .ASPXAUTH cookies differently for these
two applications.> What can I do with it?
Paul Glavich [MVP - ASP.NET] Guest
-
Andrey Skvortsov #3
Re: Single sign-on with .ASPXAUTH cookie
Thanks Paul,don't know about this setting, so ASP.NET supports single sign-on out of the box-wonderful!
Andrey Skvortsov Guest
-
Hernan de Lahitte #4
Re: Single sign-on with .ASPXAUTH cookie
You have a full sample of SSO with Forms here:
[url]http://weblogs.asp.net/hernandl/archive/2004/06/09/ssoformsauth.aspx[/url]
--
Hernan de Lahitte
Lagash Systems S.A.
[url]http://weblogs.asp.net/hernandl[/url]
This posting is provided "AS IS" with no warranties, and confers no rights.
"Andrey Skvortsov" <anonymous@discussions.microsoft.com> wrote in message
news:9705438A-78E2-43FB-A0E6-EBBBFF705E09@microsoft.com...applications located on same server(server wide asp.net cookie)?I've one> How I can issue web forms authentification cookie that can be used by both
users' domain but asp.net encrypts .ASPXAUTH cookies differently for these
two applications.> What can I do with it?
Hernan de Lahitte Guest



Reply With Quote

