Configuring Forms Based Authentication For SharePoint 2010
Sign in

Configuring Forms Based Authentication For SharePoint 2010

Technical Executive
Hi All,

 

Everyone is wondering why SharePoint 2010 Forms Based Authentication is a head ache. Guess what, its no longer is...!

The Security of SharePoint sites in 2010 are increased than ever before....!!!

The 8 Simple Steps for Configuring SharePoint 2010 FBA site

  1.      Creating Database (aspnetdb) :

 

a)     Note : “Choose any Database name. In this example we are using aspnetdb”

 

Go to Start > Run > paste the below address in the address bar

C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regsql.exe

Click OK to launch.

 

 

b)     Choose ‘Configure SQL Server for Application Services’ and click Next.

 

c)      Click Next and enter the name of the SQL Server, in this case the server name will be FBAServer.

 

d)     Confirm that we have our Database (aspnetdb) created in SQL Management Studio on the SQL server.

  2.      Create Users in IIS 7.X

 Using IIS to Populate Data for Database (aspnetdb) We Created in Step Before.

  1. Open IIS Manger on Server
  2. Select Default Web Site and Make Sure you are in Features View
  3. Open Connection Strings Option under ASP.NET Section.
  4. Click on LocalSqlServer Connection Sting & Provide SQL Server Name where you created aspnetdb in Earlier Step also Provide name of Database Created. Click ok
  5. Once again Select Default Web Site & from Features View Click on .NET Users
  6. Click on Add and Create New user in aspnetdb Click Finish
  7. Create more users by repeating “steps f and g”.

3.      Login to the SharePoint server.

  1.   Create a Claims Based Authentication Mode web application from Central Administration and assign a port number, application pool, and database name. The settings around Claims are below.

 

4.      Open up IIS (inetmgr).

  1. Select the SharePoint web application that you created and right-click. Click Explore and open the web.config in Notepad.
  2. Find the line <system.web> in the web.config. Add the code below between the </SharePoint> and <system.web>  tags.

Note : “Make sure that the Data Source name is changed.”

 

 

<connectionStrings>

    <add name="SqlAuth" connectionString="Data Source=FBAServer;Integrated Security=SSPI;Initial Catalog=aspnetdb;" />

</connectionStrings>

 

 

       c. Find the <add name=“i” tag, and then add the code below on the next line. (That is, add the code after the full <add name=“i” … /> statement.)

 

<add name="SQLMP" connectionStringName="SqlAuth" applicationName="/" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.50727.4927, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

 

      d. Find the <add name=“c” tag, and then add the code below on the next line (that is, add the code after the full <add name=“c” … /> statement).

 

<add name="SQLRP" connectionStringName="SqlAuth" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.50727.4927, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

 

5.      In IIS Manager, right-click Central Administration v4 and click Explore. Open the web.config in Notepad.

  1. Find the line <system.web> in the web.config. Add the code below between the </SharePoint>  and <system.web> tags.

 

<connectionStrings>

    <add name="SqlAuth" connectionString="Data Source=FBAServer;Integrated Security=SSPI;Initial Catalog=aspnetdb;" />

</connectionStrings>

 

 

  1. Find the <roleManager and <membership tags in the web.config.

 

<roleManager>

<providers>

</providers>

</roleManager>

<membership>

<providers>

</providers>

</membership>

 

 

  1. Replace the above with:

 

<roleManager enabled="true" defaultProvider="AspNetWindowsTokenRoleProvider">

      <providers>

<add name="SQLRP" connectionStringName="SqlAuth" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.50727.4927, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

</providers>

    </roleManager>

<membership>

      <providers>

<add name="SQLMP"  connectionStringName="SqlAuth" applicationName="/" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.50727.4927, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

      </providers>

</membership>

 

 

6.      In IIS Manager, expand the SharePoint Web Services entry and right-click the SecurityTokenServiceApplication. Click Explore. Open the web.config in Notepad.

  1. Scroll to the bottom of the file and find the </system.net> tag, and add:

 

<connectionStrings>

   <add name="SqlAuth" connectionString="Data Source=FBAServer;Integrated Security=SSPI;Initial Catalog=aspnetdb;" />

</connectionStrings>

  <system.web>

   <membership>

    <providers>

   <add name="SQLMP" connectionStringName="SqlAuth" applicationName="/" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.50727.4927, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

    </providers>

   </membership>

   <roleManager enabled="true" >

    <providers>

   <add name="SQLRP" connectionStringName="SqlAuth" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.50727.4927, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />

    </providers>

   </roleManager>

  </system.web>  

 

 

 

7.      Permissions for the User

 

The Site Collection Administrator is under Site Collections in Application Management

 Choose the Site URL and type the Created User

 

 

 

Click Ok

  8.      Logging into site Using FBA user

Select Forms Authentication

 

Login using the User created in IIS

 

 

Last but not the Least…!

I would like to thank Mr. Mukund and Mr. Donal Conlon for their help in writing this article

http://www.newbloggingtipz.com/

http://donalconlon.wordpress.com/

 

Best Regards,

Shiva Prasad B C

SharePoint Administrator

Please do post your comments and queries.

Check this Post http://shivaprasadbc.blogspot.com/2010/08/configuring-forms-based-authentication.html

start_blog_img