Hot answers tagged user-profile
2
It was working fine until I changed the default zone's authentication method to allow FBA in addition to Win Auth (claims).
Instead of changing the default zone, I think you should have extended the web application. If you can't switch things back to how they where, I would consider to restore the web application:
Considerations when restoring a Web ...
1
To answer your first question -> When you grant a specific user permissions to a site, they are added automatically to the hidden User Information list.
As far as an Active Directory group -> The group gets added to the hidden User Information list, but the user does not get added until they access the site. (As an example, I granted an AD group ...
1
There doesn't seem to be anything wrong with your code from the surface with a read through.
So it could be that you need to add your site to the safe zones of your browser. Have you checked this in other browsers?
If this is the case for IE go to Tools > Internet Options > Security > Local Intranet > Sites > Advanced > Then add your site here.
If this ...
1
OR...you could NOT use PORT numbers for your MySite web application and either create a unique URL like http://mysite or http://my (or whatever works for your organization and culture). Then set trusted sites.
OR, If the users are non-domain users (the new domain will trip an auth prompt when you switch hosts) you could create the MySite host under a ...
1
You need to configure ADFS with SharePoint. Essentially its a type of Claims Authentication with a conceptual walkthrough mentioned here
This is an excerpt from MSDN that explicitly mentions the flow of a single user from one web app to another in SharePoint
Visiting Two SharePoint Web Applications
In this walkthrough, John visits the a-Portal ...
1
you need to make sure that you have setup your database correctly:
make sure that you put your SQL database connection string in the web.config!
In the web.config, you’ll see sections for the connection string and the providers. The and sections
lastly
Membership.CreateUser
reading up on the above, it indicates that it stores the values in App_Data ...
1
OMG. Thanks to the Managed Metadata Service, that will store behind the scene the profile property, I cannot differentiate values different only by the case.
Then I can simply reproduce the problem with a simpler code:
string b64 =
"AAAaaa";
string[] b64Arr = Split(b64, 3).ToArray();
This will fail, because AAA and aaa are the ...
1
I'm thinking you are running into an issue when peeking into all of those PrincipalSource.All sources. Perhaps a permissions issue?
Are you really able to get into a RoleProvider, MembershipProvider, Active Directory and the UIL between the client and the 2013 Provider Host? ResolvePrincipal(...) stops looking when it finds a single user. The first enum in ...
Only top voted, non community-wiki answers of a minimum length are eligible
