Users' false doubloons

Posted by Community Admin on 04-Aug-2018 16:47

Users' false doubloons

All Replies

Posted by Community Admin on 24-Jun-2011 00:00

Hi,

I encounter a bug when we have multiple membership providers.
In Default tab we see all users even those of others providers. In result, you obtains Users' false doubloons on All Providers tab.

In OpenAccessMembershipProvider GetUsers you have to modify request like this :

var appName = this.ApplicationName;
 var provName = this.Id.ToString();
            var query = from r in SitefinityQuery.Get<User>(this)
                        where r.ApplicationName == appName && r.ProviderUserKey.ToString() == provName
                        select r;
            return query;


regards,
Nicolas

Posted by Community Admin on 27-Jun-2011 00:00

Hello Nicolas,

There was an old but related to this behavior, but it should be fixed since Sitefinity 4.1. Could you check whether you set different applicationName for both the providers? I configured 3 providers and none of them shares users when applicationName is different.

Kind regards,
Ivan Dimitrov
the Telerik team

Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

Posted by Community Admin on 27-Jun-2011 00:00

Ok gotcha, i use the same applicationName.

Thanks

Regards,
Nicolas

This thread is closed