Forum Discussion
IE Mode stuck in authentication loop for websites using SSO authentication
- Aug 05, 2019
This is probably happening because the site you are trying to reach is redirecting to an authentication server that is not configured to open in IE mode. You can try opening the site in standalone IE11 with Developer Tools open to see the identity of the authentication server.
The solution is to then configure the authentication server in your EMIE site list as “neutral”, like this:
<site url="login.contoso.com">
<compat-mode>default</compat-mode>
<open-in>Neutral</open-in>
</site>
This is probably happening because the site you are trying to reach is redirecting to an authentication server that is not configured to open in IE mode. You can try opening the site in standalone IE11 with Developer Tools open to see the identity of the authentication server.
The solution is to then configure the authentication server in your EMIE site list as “neutral”, like this:
<site url="login.contoso.com">
<compat-mode>default</compat-mode>
<open-in>Neutral</open-in>
</site>
- junztanJan 20, 2020Copper ContributorThank you Adrian. It is working now!
- SteveStaAug 06, 2019Iron Contributor
Thanks Adrian, that did the trick! Not having our authentication site in the list caused the issue, but adding it and setting it to Neutral (or setting it to None) works and our site that we wanted to get redirected to IEMode works as expected, and authenticates as expected.
Appreciate it!