In our web application I want Identity provider (IdP) which authenticate users using salesforce.com.

I have done with Single Sign-On Settings at salesforce.com.

After these setting salesforce provide a metadata file.

Please tell me:

  • Is there any other setting I need to make at salesforce.com?
  • What to do next in my java code to authenticate user?
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

If you have Salesforce.com acting as a SAML Service Provider, then you will need to send SAML Assertions from your IdP to Salesforce.com to authenticate users. These are basically signed XML blobs that get passed around in an HTTP Redirect or HTTP POST to authenticate users.

From the Salesforce.com configuration side it's quite simple. Here is a sample of what is required on that side to configure with the OpenSSO solution: http://blogs.oracle.com/rangal/entry/saml2_salesforce_com

What you enter in that configuration, largely depends on what your IdP can do. For example, what version of SAML, what & where the user identifier is in the SAML assertion, and the public verification certificate that matches the key used by your IdP to digital sign assertions.

How you handle this in "your java code" is a huge question with many answers. You should be using a proven SAML solution as your IdP, rather than trying to implement the SAML specification yourself. There are several open source libraries such as OpenSAML that work nicely in a Java context, but will require significant effort to integrate. Commercial solutions such as those offered by SSO & federation solution vendors (like Ping Identity) make things considerably easier if you have a budget.

link|improve this answer
I am using SAML2.0. Please tell me how to make SAML Assertion. What things I need to make assertion? i.e (metadata file, userid etc) – imran tariq May 10 '11 at 12:36
1  
Again that's a very complex question with a huge answer. The core SAML 2.0 spec defines exactly what goes in a SAML Assertion (docs.oasis-open.org/security/saml/v2.0/saml-core-2.0-os.pdf) you will be using the SSO Profile which is defined by the SAML 2.0 Profiles spec (docs.oasis-open.org/security/saml/v2.0/saml-profiles-2.0-os.pdf). Again, how you form Assertions and responses depends on what SAML solution you use, or if you build it yourself. For example, with OpenSAML: wiki.shibboleth.net/confluence/display/OpenSAML/OSTwoUserManual – Scott T. May 11 '11 at 0:57
Thanks for such a nice help. I am looking into it. As my task is IDP based. Please confirm this flow. "I will parse metadata file given by salesforce and create SAML Assertion to be send to Salesforce for authentication." This is what I need to do in order to achieve my task? – imran tariq May 11 '11 at 3:15
Metadata will tell you the initial configuration info (such as any signing certificates, and the URL for the Assertion Consumer Service). You don't need to parse it in your application, you could just manually take what you need from it, as it may not change much. The main bulk of your work will be: 1.) Receive SAML AuthnRequests from SFDC at your configured IdP URL (configured at SFDC SSO config), 2.) Authenticate the user, 3.) Send signed SAML Response with Assertion back to SFDC via HTTP POST/Redirect to the Assertion Consumer Service URL. – Scott T. May 11 '11 at 5:03
@ Scott Tomilson. Do you know that I am building an IDP like OpenSSO and OneLogin. – imran tariq May 11 '11 at 7:38
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.