Quantcast
Channel: Oracle Bloggers
Viewing all articles
Browse latest Browse all 19780

Steps to configure SAML 2.0 with Weblogic Server (using Oracle DB as a RDBMS security store)...

$
0
0

Note :

- To setup SAML 2 with Weblogic 10.3.x we need to create a security database even before creating domain.

- The RDBMS security store is required by the SAML 2.0 security providers in production environments so that the data they manage can be synchronized across all the WebLogic Server instances that share that data.

- Note that Oracle does not recommend upgrading an existing domain in place to use the RDBMS security store. If you want to use the RDBMS security store, you should configure the RDBMS security store at the time of domain creation. If you have an existing domain with which you want to use the RDBMS security store, create the new domain and migrate your existing security realm to it.

- For testing purpose you can use embedded LDAP instead of an external RDBMS store.

Have a look at the following link : https://blogs.oracle.com/blogbypuneeth/entry/steps_to_configure_saml_2

Since we no longer have the pointbase database shipped along with Weblogic 10.3.6, I am using an Oracle database to configure RDBMS store.

Prerequisite :

Step 1 : 

We need to create two security database – one for the source side domain and another for the destination side domain.

To connect to your remote Database we can use the " Oracle Database Instant Client " application, which can be downloaded from :

Link : http://www.oracle.com/technetwork/database/features/instant-client/index.html

To connect to a remote Oracle Database I used the following command : 

 - cd C:\Users\puneeth\Desktop\instantclient_12_1 

-  sqlplus "puneeth/puneeth@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(Host=xx.xxx.xx.xx)(Port=1521))(CONNECT_DATA=(SID=oracle11g)))"

-  Once it is connected successfully you would see the following prompt " SQL> "

< Additional Info >

Link : http://docs.oracle.com/html/B10131_02/post_install.htm

- Now you need to create the database tables using the sample script ( rdbms_security_store_oracle.sql ) provided in your <wlserver_10.3>/server/lib

- To run the script I used the following command :

SQL> @rdbms_security_store_oracle.sql 

Now we have created a table for RDBMS store using the Oracle user " puneeth " -- This can be used as an RDBMS store for one of the domains, say IDP.

We have to create another table using a different user which can be used as an RDBMS store for the second domain, say SP.

When creating a IDP domain use the user " puneeth " and while creating the SP domain use the second user say " puneeth1 " to connect to the RDBMS store.

We need to run the same sample sql script  ( rdbms_security_store_oracle.sql ) by logging in as the " puneeth1 " user.

In my case I did not have another DB user created, so I used the following command to create a new Oracle DB user :

CREATE USER "USER" PROFILE "DEFAULT" IDENTIFIED BY "user" DEFAULT
TABLESPACE "USERS" TEMPORARY
TABLESPACE "TEMP" ACCOUNT UNLOCK;
GRANT UNLIMITED TABLESPACE TO "USER";
GRANT "CONNECT" TO "USER";
GRANT "RESOURCE" TO "USER";

Note :

- I have used the user " puneeth " to connect to the DB for IDP domain and user " puneth1 " to connect to the DB for SP domain.

- You should configure the RDBMS security store at the time of domain creation.

- Do a test connection and make sure you are able to connect to the DB successfully.

- Now create a domain namely " SAML2_IDP_Source_Domain " and " SAML2_SP_Destination_Domain "

----------------

 Steps to configure SAML2 with Weblogic Server ( using RDMBS security store ) :

Prerequisite :

- In the following example I have created two domains " SAML2_IDP_Source_Domain " and " SAML2_SP_Destination_Domain " on Weblogic Server.

- I have created self signed certificates and configured SSL on both the domains.

- Source domain HTTP and HTTPS ports are 7001 and 7002 respectively.

- Destination domain HTTP and HTTPS ports are 7003 and 7004 respectively.

SAML Souce site configuration :

- Create a " Credential Mapper " on Weblogic Source domain, i.e on the IDP end.

- Login to Source domain - Weblogic console --> Click on ” myrealm ”–> ” Providers ”–> ” Credential Mapping ”–> and add a ” SAML2CredentialMapper ” say ” SAML2_CredentialMapper ” as shown below :

Credential Mapper

- Now click on the newly created SAML2CredentialMapper say ” SAML2_CredentialMapper ” and make the following changes :

">Issuer URI : http://www.souresite.com/saml

Name Qualifier : sourcesite.com

- Click on ” Servers ”–> Admin Server –> ” Federation Services ”–> ” SAML 2.0 Identity Provider ” and make the following changes :

Enabled : check

Preferred Binding : POST

- Click on ” Servers ”–> Admin Server –> ” Federation Services ”–> ” SAML 2.0 General ” and make the following changes :

Replicated Cache Enabled – Uncheck / Check

Contact Person Given Name

Contact Person Surname

Contact Person Type

Contact Person Company

Contact Person Telephone Number

Contact Person Email Address

Organization Name

Organization URL

Published Site URL : http://<SourceSiteDNSName>:<PORT>/saml2

Entity ID : ( Source Domain name)

Single Sign-on Signing Key Alias

Single Sign-on Signing Key Pass Phrase

Confirm Single Sign-on Signing Key Pass Phrase

Save the changes and export the IDP metadata into a XML file –> Click on “ Publish Meta Data ” button. ( say idp_metadata.xml ). We need to copy this file to the destination domain later.

Destination Site Configuration : 

- Create an Identity Asserter on the destination domain, i.e SP end.

- Login to Destination domain - Weblogic console --> Click on ” myrealm ”–> ” Providers ”–> ” Authentication ”–> new ” SAML2IdentityAsserter “ say ” SAML2_IdentityAsserter :

Click on ” Servers ”–> Admin Server –> ” Federation Services ”–> ” SAML 2.0 Service Provider ” and make the following changes :

Enabled : check

Preferred Binding : POST

Default URL : http://<DestinationSiteDNSName>:<PORT>/samldest01App

Now click on ” Servers ”–> Admin Server –> ” Federation Services ”–> ” SAML 2.0 General ” and make the following changes :

Replicated Cache Enabled : Uncheck / Check

Contact Person Given Name

Contact Person Surname

Contact Person Type

Contact Person Company

Contact Person Telephone Number

Contact Person Email Address

Organization Name

Organization URL

Published Site URL : http://<DestinationSiteDNSName>:<PORT>/saml2

Entity ID : ( Destination Domain name)

Single Sign-on Signing Key Alias

Single Sign-on Signing Key Pass Phrase

Confirm Single Sign-on Signing Key Pass Phrase

Save the changes and export the IDP metadata into a XML file –> Click on “ Publish Meta Data ” button. ( say SP_metadata.xml ). 

Copy service provider metadata ( SP_metadata.xml ) to Source Domain and identity provider metadata ( idp_metadata.xml ) to the Destination Domain as shown below :

--

Now configure Service Provider metadata on SAML Identity Provider in Source Site :

Log in to the source site Admin Console and click on ” Security Realms ”–> ” myrealm ”–> ” Providers ”–> ” Credential Mapper ” –> ” SAML2_CredentialMapper ”–> ” Management ”–> ” New ”–> ” New Web Single Sign-On Service Provider Partner ” :

">

Name this ”New Web Single Sign-On Service Provider Partner” as “SAML_SSO_SP01″ and select the SP_metadata.xml file.

Click on the newly created ” SAML_SSO_SP01 ” and enter the following :

Name :  SAML_SSO_SP01

Enabled :  Checked

Description  : SAML_SSO_SP01

Key Info Included  : Check

">


Click on Site info and verify the data :

------

Now configure Identity Provider metadata on SAML Service Provider in Destination site :

Login to Destination Site Admin Console :

Click on ” Security Realms ”–> ” myrealm ”–> ” Providers ”–> Authentication -> SAML2_IdentityAsserter –> ” Management ”–> ” New ”–> “ New Web Single Sign-On Identity Provider Partner ” say ” SAML_SSO_IDP01 ” and then select ” idp_metadata.xml ” :


Click on ” SAML_SSO_IDP01 ” and enter the following :

Name : SAML_SSO_IDP01

Enabled : Check

Description : SAML_SSO_IDP01

Redirect URIs : /samldest01App/restricted01/samldest01services.jsp


We have successfully configured SAML 2 with Weblogic Server...!!

Deploy the source and destination application and check if SAML 2.0 works fine.

DOWNLOAD : Source Application.

DOWNLOAD : Destination Application.

Note :

- To test this sample application create a user " SAML_SSO_GRP " ( or a group named " SAML_SSO_GRP " and add any user to this group ) in embedded LDAP on both source and destination domain.

- When you access the Source application, you will get a challenge, enter this username and the password you had provided while creating it to login. Now click on the redirect URL and you should not be asked for a challenge while accessing the Destination app.

-  In the application jsp pages I have specified " localhost " in the URL, change it to your respective host / IP address.

- If you have the Source and Destination domain on the same machine, then make sure you edit the jsp page and change the redirect URL to IP / host, donot use " localhost " as it may go into a loop.  


Viewing all articles
Browse latest Browse all 19780


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>