I have read the Spring doc regarding Securing your Web services with Spring-WS but it looks for me as if the article is just regarding server side and not client side. Indeed, it is working fine for server side with Wss4jSecurityInterceptor
but I need to sign a request to an external Web service.
So, first question. Am I right and chapter 7 of Spring Web Services documentation just apply to server side?
Second. It is possible, to add security, like signed headers, to SOAP requests on client side with Spring in a way similar (simple, elegant) to how it is done on server side?
I have found this question but it looks like signing is done with Apache CXF and this article where signing is done in a home made way.
Thanks in advance.