0
votes
0answers
96 views

SharePoint 2013 Forms based authentication with a user list on each site collection

We need to provide forms authentication on a SharePoint Internet website where the users will be added to the site collection they have access permission. It's kind of a multi-tenant website. Imagine ...
1
vote
1answer
103 views

FBA with AD provider and Windows Authentication not the same user?

is there a way that my FBA (ActiveDirectoryMembershipProvider) logged user like jo@xxx.com and the Windows Authentication user jo@xxx.com became the same user (meaning they have the same user id) and ...
0
votes
0answers
82 views

Claims FBA with a remote active directory membership provider

I plan on setting up Claims FBA using the AD membership provider, but I would like to use a AD Domain that is remote (not the domain that the SP Farm lives on). Is this possible? Is it any different ...
2
votes
1answer
281 views

People Picker and FBA - partial functionality

So I've read a number of other questions on this topic and believe my situation is different. I have a web application with Forms Authentication. It is configured in the web.config files of central ...
1
vote
0answers
78 views

using sharepoint 2010 FBA with different webapplications

I'm migrating an existing SharePoint 2007 FBA Single Sign ON Solution to SharePoint 2010. I have three different webapplication all with the same custom membershipprovider. In the validateUser ...
0
votes
1answer
149 views

Does the membership seeder tool to add new FBA users, use the createuser method?

Does the membership seeder tool to add new FBA users, use the createuser method? Here is the link from where I downloaded it: http://cks.codeplex.com/releases/view/7450
1
vote
1answer
236 views

Claims FBA with multiple membership providers

Is there a way to use only forms authentication with multiple membership providers? For example, a user would enter their username and password this would attempt to authenticate with, say, the SQL ...
0
votes
2answers
3k views

Overriding the SharePoint ASP:Login control for FBA with code behind

I've searched online at all different documents regarding FBA custom login page for Sharepoint 2010. Nearly everyone I have found, either shows you a custom page, adds a login control and no code ...
0
votes
2answers
2k views

How to create a custom FBA login Page that forces user to change password and view license agreement if required

We have implemented our own MembershipProvider. I inherited the SQLMembership provider used the Microsoft ASP Membership SQL database. We have extended this database so that you could set a bit flag ...
2
votes
1answer
498 views

FBA and People Picker Issue on NTLM Web App Zone

SCENARIO I correctly set up FBA on SharePoint 2010 following these tutorials (among others): ...
0
votes
3answers
297 views

FBA and applicationName

I have created a custom membership provider for FBA (SharePoint 2010). My CustomMembershipProvider (+ role provider) are defined in the 3 web.config (CA, STS, webapp). In web.config of webapp, I set ...
0
votes
1answer
153 views

FBA and MemberShipProvider

Do we always need to extend web app when using FBA? I know it seems a silly question, but I can't find a straight answer. EDIT: SharePoint 2010
2
votes
1answer
1k views

Changing users DisplayName isn't permanent (i:0#.f|… issue)

We're having the issue where user's names shown after logging in are being preffixed with the membership provider information, e.g. i:0#.f|fbamembershipprovider|myemail@q... (note that we're using FBA ...
2
votes
2answers
501 views

One FBA Web Application with Multiple Membership Providers in sharepoint 2010?

I am trying to implement both LDAP as well as Sql provider authentication by creating multiple zones i.e by extending the web application that already uses LDAP provider. I have implemented following ...
0
votes
2answers
287 views

Get Active Directory user for multiple security provider for EnsureUser()

I have 3 security provider for my web application 1. Active Directory 2. ADFS 3. SAML Now suppose a user exist in all 3 provider.Hence when i do use ensure user method i get error/ exception "user ...
3
votes
2answers
741 views

FBA custom login page - membership provider returns “The method or operation is not implemented.”

My SP web application use FBA authentication (AD and aspnetSQLmembership providers). I want log in to SP site from custom SP login page. In code-behind page (my class inherit ...
0
votes
1answer
242 views

Custom properties of logged in user

I have written a custom membership provider for forms-based authentication to our SP site. The membership provider authenticates against our existing Users table in our DB. There are a few bits of ...