We have a web application (asp.net mvc 3) that should support SSO for internal uses via AD. We also have a large community of external users that we want to have SSO for all of our web applications. for example: external_user1 accesses webappA, webappB and webappC all with the same login. Also, domain\user1 has access to all three webapps. we plan to use WIF and ADFS 2.0.

We don't want to have AD accounts for all of the external users so, in the past we might have tried a solution with ADFS 1.x and ADAM. however, we're on Windows Server 2008 R2 and ADFS 2.0 cannot use AD LDS (successor to ADAM) to authenticate users.

What is the SSO approach (using microsoft products)?

link|improve this question
Are you using the ASP.NET authentication provider? – Andrew Jun 9 '11 at 21:40
feedback

3 Answers

The key question is whether you can leverage external_user1 account store or not. If you can, then you would just need to add another trust relationship between your ADFS and their STS and you are done! That approach would be ideal, because then you would not need to maintain external_user1 anymore. Essentially this:

enter image description here

If you can't leverage ther user accounts, then you can still use ADFS v1.1 and have a trust with yourself:

enter image description here

link|improve this answer
Good answer.... – Frode Stenstrøm Jun 10 '11 at 12:24
Our external users are like public internet users and do not collectively belong to a common organization therefore no common account store or sts. We would also be bound by ADFS 2.0 as our servers are 2008 r2. Likewise ADAM is out as AD LDS cannot be used as an IP for ADFS 2.0 – Steve Jun 10 '11 at 18:05
The 2 questions then are: can you use extrnal identities like Frode is suggesting (e.g. LiveIDs, Facebook, etc). Wht not install ADFS 1.1 on Windows Server 2008? In fact, ADFS v1.1 is already incliuded in Windows Server 2008. – Eugenio Pace Jun 11 '11 at 2:12
feedback

In addition to Eugenios answer, you should investigate Microsoft Azure ACS. This will give yo you federation of Gooogle, Facebook, Yahoo and other OpenId providers.

Your authentication chain will look like this:

Your App -> ADFS -> Active Directory or Your App -> ADFS -> ACS -> Google.

Search for the ADFS tag in this site, and you will find many relevant posts.

link|improve this answer
feedback

Could you not create a custom STS that does allow authentication against ADAM and that has a trust relationship with ADFS v2.0?

link|improve this answer
Would ADAM need the STS to connect to ADFS? I thought the latest ADAM setup could connect directly. – Frode Stenstrøm Jun 12 '11 at 20:03
1  
AFAIK, ADFS can only use ADAM (AD LDS) directly as an attribute store for authorisation. There is no way to connect directly to AD LDS for authentication. You need the custom STS to do this - in the same way that StarterSTS uses the ASP roles based SQL DB for authentication. – nzpcmad Jun 12 '11 at 22:23
Thank you for clearing that up! – Frode Stenstrøm Jun 14 '11 at 7:25
This is the number 1 issue re. confusion for ADFS :-) – nzpcmad Jun 14 '11 at 23:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.