An open API service indexing awesome lists of open source software.

https://github.com/giosil/saml-sp

Boilerplate for SAML Service Provider implementation.
https://github.com/giosil/saml-sp

authentication java javaee saml saml-authentication saml-sp-single-sign-on saml2 saml2-sp-sso security

Last synced: 2 months ago
JSON representation

Boilerplate for SAML Service Provider implementation.

Awesome Lists containing this project

README

        

# SAML-SP

Boilerplate for SAML Service Provider implementation.

## SP-Initiated SSO: Redirect/POST Bindings

See http://docs.oasis-open.org/security/saml/Post2.0/sstc-saml-tech-overview-2.0.html

![SAML 2.0](saml.png)

## Run locally on Docker

- `git clone https://github.com/giosil/saml-sp.git`
- `mvn clean install` - this will produce `saml-sp.war` in `target` directory
- `docker build -t saml-sp .` - this will create a Docker image named saml-sp
- `docker run --rm -it -p 8080:8080 saml-sp` - To run image named saml-sp

## Contributors

* [Giorgio Silvestris](https://github.com/giosil)