1

In order to implement Federated Sign-on between a (potentially more than one) customer with ADFS and my web application, I understand that I need ADFS installed in my environment.

If I were to do this (and install Active Directory) I can't see that I would ever need the Active Directory, as auth will be deligated to the customers AD through ADFS.

so...

Do i need to install Active Directory in my application environment? And\Or Is there an alternative to doing so?

cmilhench
  • 666
  • 5
  • 17

2 Answers2

4

Yes, you need Active Directory for Adfs as it doesn't provide any other identity providers out of the box.

Wiktor Zychla
  • 47,367
  • 6
  • 74
  • 106
3

If you comment out all the Identity methods in the web.config for ADFS, you get ADFS acting as a broker i.e. has no credential store of its own. So it would not require AD.

However, I am not sure what happens when you try and install ADFS since it binds with the domain AD at that point. Not sure what the effect what be if there is no AD to be found.

You could always install AD and then essentially ignore it.

rbrayb
  • 46,440
  • 34
  • 114
  • 174