0

We are planning to build a web application which will use ADFS for authentication. The web application will be hosted on an AWS instance but will be talking to on-premises or cloud ADFS.

can I use ADAL(Active Directory Authentication Library) for federating authentication and saving authentication context in this scenario? if yes is there any drawbacks?

JURS
  • 67
  • 6

1 Answers1

1

When you say "cloud ADFS" you mean ADFS in a VM in the cloud?

ADAL is for mobile and native devices.

Normally a web application will use OWIN e.g. like this.

If you are not using ADFS 4.0, then use WS-Fed or SAML as per this.

These are for Azure AD but the principles are the same.

rbrayb
  • 46,440
  • 34
  • 114
  • 174