MVC5 Web app using ADFS On-Premises Organizational Auth and Visual Studio 2013 localhost development

我与影子孤独终老i 提交于 2019-12-06 05:42:27

as mentioned in Vittorio's first response, the seems that the relying party identifier sent by your application does not match what is registered in ADFS. This should not require a new vanilla ADFS setup. I suggest the following:

  1. Ensure that you have a Relying Party trust setup in ADFS for the application.
  2. Ensure that the identifier for the application matches what you have specified in your application as you see in Vittorio's blog post.
  3. Ensure that the return URL is set correctly on the ADFS relying party trust and matches your F5 settings for the application. You can see a screen shot in Vittorio's blog post.

Let me know if this works out for you.

--Sam

it looks like you defined your RP trust using https://localhost:44300 but in fact you are sending https://localhost:44300**/**. The trailing slash is significant for that comparison! :-) I recommend using a logical identifier per realm, or adding the trailing slash in your RP trust. HTH V.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!