up vote 3 down vote favorite
share [g+] share [fb]

I am currently using the jaxws and apache CXF framework to create webservices using the top down approach.

I am using the SOAP interceptors to add remove SOAP header elements, using SAAJ, before the message gets to the container, and the container maps the SOAP action too the java method. I am doing this to create Security Token Services (STS) to facilitate a lite implementation of the SAML2 Profile - converting authentication details into portable identities (SAML Authentication Assertions).

I cannot help think there must be an easier way to do this. Is there a framework that will allow me to manipulate the message with more ease? and if so a tutorial would help.

Many thanks

link|improve this question

1  
If by SOAP Interceptors you mean SOAPHandlers as described in jax-ws.dev.java.net/articles/handlers_introduction.html, then yes, I think it's the best way. – alves Aug 11 '10 at 18:41
feedback

1 Answer

To change things in SOAP messages you must use SOAP Handlers. Maybe easier way to do it is changing the way you are securing your web service, if you use a WS-Security way of doing things, our container will work with it fine, and you don't need the handlers anymore.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.