November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Hi @Kumar
Possibly this thread could be the answer you require : https://world.optimizely.com/forum/developer-forum/CMS/Thread-Container/2020/2/how-to-integrate-adfs-with-episerver-in-case-run-as-multiple-sites/
It depends how your current login flow being implemented. In a nutshell, you can follow the implementation in the article below, most the concepts are still relevant. From memory, there is a key area you need to set authentication mode to passive
https://www.dotnetcurry.com/windows-azure/1166/aspnet-mvc-multiple-adfs-owin-katana
We have two websites and implemented SSO for one site. Now we need to implement SSO second website with different MetadataAddress&Wtrealm but we have an issue with
WsFederationAuthenticationOptions(){
MetadataAddress="",
Wtrealm="",
}
Every site has its own meta address and Wtrealm. How can we assign these values dynamically?
Site 1:
WsFederationAuthenticationOptions(){
MetadataAddress="abc.xml",
Wtrealm="site1",
}
Site 2:
WsFederationAuthenticationOptions(){
MetadataAddress="xyz.xml",
Wtrealm="site2",
}