문제

I am looking for some possible solutions for my web application security.

The web application redirect the user to the login server. Then after authentication is successful the user will be forwarded back to a certain page within my application. The login credentials are forward with the user. My page is served via a controller that authenticates the user for my application. (Authentication is accomplished using Liberty ID-FF 1.2.)

Currently, I am using Spring 3 page interceptors for the redirection.

My question is; How can I accomplish this with Spring Security? Or, is there another comparable framework? I like Spring Security for how easy it is to configure and how it protects the resources. To use it I need to have the authentication controller redirect the user to the login server. How do I do that in the authentication controller?

I am using JBoss 4.0.5, Spring 3.0, Java EE 5, and ID-FF 1.2.

도움이 되었습니까?

해결책

I am afraid there is any support for Liberty ID-FF in Spring. Currently, there is SAML2 extension module only available for Spring Security.

More info:

http://static.springsource.org/spring-security/site/extensions.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top