C
C Kiraly
Guest
Standard stuff... Sitefinity CMS v 12.0 I'm using a custom SSO authentication control ( I have to use the custom control because the SSO is OAuth or OpenID compatable and doesn't provide any of the information that setting up the SSO as a Custom Provider in Sitefinity requires (at least from my read through the documentation)) public UserLoggingReason AuthenticateUser() { return SecurityManager.SkipAuthenticationAndLogin("Default", userName, true, ConfigurationManager.AppSettings["SSOAuthRedirect"], ConfigurationManager.AppSettings["SSONoAuthRedirect"]); } This function came from Login users when using custom authentication - Sitefinity CMS Development I'm making the assumption that this is working as expected as A) it goes to the SSOAuthRedirect page, and B) the Sitefinity member-login control shows "Log out" and "Welcome [user name]" correctly. However, if a user with the "Members" role get authenticated, it doesn't show the "Members" menu items. So, either I'm doing something wrong (which I'll admit is a strong possiblity), or there is some setting I've overlooked (which is easy enough as I'm not a normal Sitefinity user) Hoping someone here has seen something similar and can share any guidance. I have to use the custom control because the SSO is OAuth or OpenID compatable and doesn't provide any of the information that setting up the SSO as a Custom Provider in Sitefinity requires (at least from my read through the documentation).
Continue reading...
Continue reading...