Service providers with SAML version 2 for SSO accessible to public?

Joseph Weissman picture Joseph Weissman · May 19, 2011 · Viewed 48.9k times · Source

I'm wondering if there are any publicly available SAML version 2 SPs (Service Providers) that can be used to test SSO(Single Sign On)

Salesforce and Google apps both have an SSO solution, but how to go get access to them and what is the cost for those services?

I could setup a service provider using OpenSSO on an another system for my testing purpose.

Answer

fujifish picture fujifish · Mar 11, 2017

Samling is a serverless SAML IdP for the purpose if testing any SAML SP endpoint. It supports AuthnRequest and LogoutRequest.

It runs solely in the browser to simulate SAML responses returned from a SAML IdP - no registration, no servers, just a browser. You can control many aspects of the response - from success to various failures.

Simply setup the target URL for the SAML IdP to be https://capriza.github.io/samling/samling.html, and you're done. If there is a SAMLRequest query param present on the request, Samling will parse, extract and populate the relevant fields.

samling start page

If you don't want to use the online version, you can clone the samling repo from https://github.com/capriza/samling and host it yourself - all you will need is a static file server.

(disclosure: Samling was developed by Capriza so we could easily test out various SAML integrations)