Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anyone using Spring-ws with SAML authentication?

Tags:

saml

spring-ws

We are considering spring-ws as the platform for implementing web services that will be deployed on weblogic. We need to use WS-Security with SAML tokens issued by our identity management platform (TFIM).

The Spring-ws documentation for XwsSecurityInterceptor does not mention SAML, and it is not clear to me if would work in this context.

I guess alternatives could be to do our own interceptor which uses OpenSAML or somehow utilises the SAML support in weblogic.

Does anyone have experience with this? Would be nice to aim for a solution that is known to be workable.

like image 728
Tore Avatar asked Nov 14 '22 15:11

Tore


1 Answers

Apache WSS4J does support SAML tokens, and Spring-WS comes with a Wss4jSecurityInterceptor, so I'd guess you could get it working out of the box.

like image 64
skaffman Avatar answered Dec 28 '22 16:12

skaffman