Authentication on OpenAccess Dashboards when SSO enabled
Hi,
We enabeled SSO/windows authentication yesterday. This morning i noticed that our wall monitors displayed a login box. These screens display a few squaredup open access dashboards, which with forms authentication just worked.
The computer running these screens is using firefox, adding squaredup url to the FF config makes the user authenticate.
No license are being used.
Hi!
We encountered the same problem when we activated Windows Authentication, and the solution for us was to verify the authorization-rules in web.config. Try changing your web.config to resemble something similar to this (the most important rule to verify anonymous access to would be for the path “OpenAccess”):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<location path="UserContentStorage"> <system.web> <authorization> <deny users="*" /> </authorization> </system.web> </location> <location path="OpenAccess"> <system.web> <authorization> <allow users="?" /> </authorization> </system.web> </location> <location path="Content"> <system.web> <authorization> <allow users="?" /> <allow users="*" /> </authorization> </system.web> </location> <location path="Scripts"> <system.web> <authorization> <allow users="?" /> <allow users="*" /> </authorization> </system.web> </location> |
Have you checked whether you have anonymous authentication disabled on your Squared Up server? This needs to be enabled in order to bypass authentication. I disabled this as a test and received the same issue as you described above. You can check this via:
-> IIS
-> Squared Up application
-> Authentication
-
Whichever authentication you have enabled i.e. windows or forms make sure that you have anonymous enabled as well as this bypasses authentication for open access.
Answer this question
To reply or comment, use the 'Comment' link on the relevant answer or question.