Reputation: 1
Looking for the spring security with SSO deployed on cloud foundry configuration or an example.
I have tried Spring security using CAS and Open Id works fine in local but deployment on cloud foundry fails.
Can somebody please help on what cloud foundry supports for the SSO & if possible provide me with an example ?
Thanks
Upvotes: 0
Views: 1021
Reputation: 1270
Cloud Foundry has a open source project that is focus on SSO which takes care of user accounts and authentication.
Here you can find the source code along with documentation:
https://github.com/cloudfoundry/uaa
Here is the section for the sample apps which you can use with UAA. You can easily checkout the code and have it running on your localhost tomcat (servlet container) and try out the Single Sign On.
https://github.com/cloudfoundry/uaa/tree/master/samples
The technology is using OAuth 2 implementation in Spring
Here is a nice presentation from Dr. Syer who is now part of Cloud Foundry as he demos his early works on UAA. Its of course become much complete and you can fully use it to your needs.
Upvotes: 2
Reputation: 161
CAS requires some Tomcat configuration. Did you update CF tomcat configuration in order to support CAS and HTTPS? Provide also your Spring SSO configuration in order to investigate further.
Upvotes: 0
Reputation: 852
http://static.springsource.org/spring-security/site/docs/3.1.x/reference/sample-apps.html This one should cover all the sso samples in spring security. If you have trouble on deployment on cloud foundry, you can paste the detailed err log here so we can have a look.
Thanks, William
Upvotes: 1