Dienstag, 19. Oktober 2010

UAG–Enable SSO by passing user credentials to formular based Web Applications

A lot of Web Applications like Sharepoint or Outlook Web Access make use of formular based user authentication. Some of these applications cannot be configured to use other authentication methods like Basic- or Windows-Authentication. In this case the user has to authenticate twice, one time to login to the portal, the second time, if he wants to start the published application inside the portal. Sharepoint for example can be configured to use the ASP.Net Membership Provider to authenticate external users with forms based authentication. UAG can also be configured to use ASP.Net Membership Provider to authenticate external users like i described in my post here. Both applications use the same repository for authentication and we can use a feature called the Form Authentication Engine built into the UAG product to pass the credentials of the logged in user into the authentication form presented by Sharepoint and do an Autosubmit. Done so, we can bring SSO-Experience to our end-users.

The Mission:

1. Setup an Intranet Sharepoint Site using Windows Authentication
2. Extend the Website to external Users using ASP.Net Membership
3. Publish the extranet Sharepoint Website via the UAG Portal
4. Configure the UAG Formular Engine to work with Sharepoint FBA
5. Test the result

 

1. Setup an Intranet Sharepoint Site using Windows Authentication


Start the Sharepoint 2010 Central Administration and select Application Management and click on Manage Web Applications. On the following WebSite click the New button to create a new Web Application.

New_Web_App1

In the Create New Web Application Wizard select Claims Based Authentication.

New_Web_App2

Scroll down and check if the Authentication Type for this Web Application is set to Windows Authentication because this Web Application will be used by our internal clients and is not published to any external users.

New_Web_App3

Change the Application Pool Account to Network-Service and click OK to create the Web Application. I did not make any ohter changes and left the defaults. After the Wizard has finished click OK and select Application Management and click on the Create Site Collections link in the Site Collections section.

Site_Collection1

In the Create Site Collections Dialog make sure the correct Web Application is selected.

Site_Collection2

Also fill in a title, select a site template and make sure to add an Active Directory user as Primary Site Collection Administrator.

Site_Collection3

After the processing has finished you can try to access the Homepage by clickin on the displayed link. The default content shows and you are automatically logged in with your actual credentials.

Site_Collection4

 

2. Extend the Website to external Users using ASP.Net Membership


Navigate back to Application Management –> Manage Web Applications. Select the Web Application created in the steps before and click on the Extend button.

Extend_Web_App1

In the Wizard create a new IIS Site, fill in a name and set the port number you like.

Extend_Web_App2

In the Claims Authentication Types uncheck Enable Windows Authentication and check Enable Forms Based Authentication. Enter the name of the Membership and Role Providers and change the zone to Extranet at the bottom of the dialog.

Extend_Web_App3

After the Web Application is extended you can test the url and you should see a Login Formular

Extend_Web_App4

The next step is to configure Sharepoint 2010 to use the ASP.Net Membership SQL Instance for authentication. Because this is beyond the scope here you can use this very detailed Step-By-Step Guide in Donal Conlons Blog.
After setting up Sharepoint 2010 and IIS to use the same ASP.Net Membership provider like UAG we configured both products to use the same authentication repository and you can login to both products with the same usernames and passwords stored in the SQL Database.

 

3. Publish the external Sharepoint Website via the UAG Protal


I assume that you have already done the steps provided in my article about UAG and SQL Authentication. So there is a portal up and running and we need to publish a new Web Application through the UAG Management Console.In the UAG Management Console click the Add button to start the Add Application Wizard and click Next on the Welcome Screen.

UAG_Add_App1

On the Select Application Screen check the option Web and choose Other Web Application (Portal Hostname).

UAG_Add_App2

In the Configure Application Screen type in a name for your application and type in an Application type. Keep the application type in mind because you will need this information later.

UAG_Add_App3

In the Select Enpoint Policy Screen select the Enpoint Policies you require. To keep things simple i use the option always for all policy settings. This is not my recommendation but i want to focus on the main solution.

UAG_Add_App4

In the Deploying an Application Screen select Configure an Application Server and click next.

In the Web Servers Screen enter the name of your Sharepoint Server, set the Path value to / and enter the Port number your external Sharepoint Site is listening on.

UAG_Add_App5

In the Authentication Screen check the Use Single-Sign-On checkbox and add the SQLAuthN Repository as an Authentication Server. Select Both for the Client Authentication Method.

UAG_Add_App6

In the Poral Link Screen you can accept the defaults and in the Authorization Screen you can authorize all users to access the application. After that you can exit the Wizard by clicking Finish. Please do not forget to Activate your configuration to store the changes you have made. It will take some time until the new configurations becomes active. Now you can log on to the portal using your SQL Credentials and you can see a new accessable application listed.

UAG_Add_App7

When you click on your new application the Sharepoint 2010 FBA login form appears. This is expected and if you enter the same credentials again you should be able to access the Sharepoint content.

 

4. Configure the UAG Formular Engine to work with Sharepoint FBA


The next step is customizing some configuration files in UAG to set up the Formular Engine. The Engine has to recognize and to identify the form. The Engine also needs information about the input fields of the form so that the users credentials can be inserted. An Autosubmit script needs to detect the submit button of the form and is fired after the credentials are inserted.

Navigate to the <UAG Installation Folder>\von\Conf\WizardDefaults\FormLogin\ Folder and create a new Folder called CustomUpdate.

UAG_FormEngine1

Copy the FormLoginCustom.xml File in the CustomUpdate Folder and rename it to FormLogin.xml

Clear the content of the File and insert exactly the same content you can see in the next screenshot. If you have entered a different Application type when you created your portal application then enter the exact Application type you defined. Replace my Application type (SharepointFBA) with your one. Keep in mind that XML-Syntax is case sensitive.

UAG_FormEngine2

The content identifies your Application type, the URL which presents the form, the supported browser for this form application, the formular name, method and the input types as they appear in the HTML source of the login form. The LoginFormHandler Script checks if there is only one <form>-tag in the HTML source and the SharepointFBA Script is a custom script that identifies the submit-button of the login form and autosubmits the form in JavaScript.

To create a custom Autosubmit script open the file FormLoginDataDefinitions.xml in the <UAG Installation Folder>\von\Conf Folder and mark the complete <SCRIPT>…</SCRIPT> section for the FormLoginSubmitSP14AAM script. Copy the section by pressing STRG-C and insert it after the closing </SCRIPT>-Tag.

UAG_Autosubmit1

After you inserted the copy of the script change the name-attribute value to SharepointFBA and the GetElementByID-String to ctl00_PlaceHolderMain_signInControl_login because this is the ID of the submit-button in the SharepointFBA form.

UAG_Autosubmit2

Open the UAG Management Console and Activate the configuration. Wait some time to let the changes become active.

 

5. Test the Result

From a client computer access your portal url and log in as an external user. Click on the Sharepoint External Access link in the portal and see what happens. You can see the Sharepoint Form for a short while with username and password fields already filled out. After a second or shorter the form is automatically submitted and the user is logged in without any interaction.

Have fun with this nice feature in the UAG product!

7 Kommentare:

Anonym hat gesagt…

Andy, great post, it is very informative, thank you. One question though: how would you grant FBA users authorization to anything? The Default zone can see only Windows users and the Extranet Zone can see only SQL users. I am logged in as a Windows user and I tested that a SQL user can authenticate, but has no authorization. How do you suggest we give the SQL user authorization to the site?

Anonym hat gesagt…

I figured it out. You must create an admin account in the SQL identity store and grant rights to SQL users that way. You can also grant site collection admin rights to SQL users through Central Admin.

Andreas Hecker hat gesagt…

@Zimberg:
This is exactly the way the story goes. After adding a collection admin from the SQL Store you can authorize other users from the SQL Store to access content.
Bye
Andreas

Stuart Mueller hat gesagt…
Dieser Kommentar wurde vom Autor entfernt.
Stuart Mueller hat gesagt…

I followed the instructions on your blog to publish my SharePoint site using SSO through UAG, but found that SSO wouldn't always work, apparently if you have SP1 you may sometimes need to appy a roll up hotfix to get SSO to work, I have detailed this here
http://tech-src.blogspot.com/2012/02/fba-sharepoint-and-uag.html

Surya Pulipati hat gesagt…

Greate Post!! we have successfully configured Sharepoint SSO on UAG. I am providing code here to copy easily for above screen shots.

http://suryapulipati.blogspot.com/2012/06/sharepoint-2010-uag-formlogindatadefini.html

Sharepoint FBA SSO
http://suryapulipati.blogspot.com/2012/06/sharepoint-2010-with-uag-sso.html

Unknown hat gesagt…

Thanks for sharing information about UAG and sharepoint. I use your tips and follow them and publish my SharePoint site using SSO through UAG. Now i understand how powerful uag microsoft application.