How to modify the generated SOAP request?
-
I'm at the stage where I created an output interceptor and I get an OuputStream out of the SOAP message. But how could I modify the SOAP envelope right before sending it to the endpoint? I would like to delete some xml elements.
-
Answer:
one way could be to get the document and run it through XSLT transform. You can get at the document in the handleMessage of your interceptor by calling @Override public void handleMessage(SoapMessage message) throws Fault{ SOAPMessage saaj = message.getContent(SOAPMessage.class); Document doc = ssaj.getSOAPPart(); // This actually returns a SOAPPart instance but it does implement the w3c Document interface //play around with the document, doc is a reference so any changes made to that instance //will be forwarded to the rest of the chain } careful though that if you have security such as XML signature that must be performed on the soap content you must ensure that your interceptor occurs BEFORE the signature are applied otherwise you will invalidate them. To play around with the timing of the interceptor you can specify the phase at which it will run. CXF should also honor the order in which you will configure them should they be performed at the same phase. but don't take my word for it... check these for more info http://cxf.apache.org/docs/interceptors.html http://fusesource.com/docs/esb/4.2/cxf_interceptors/CXFInterceptorIntro.html debugging through the CXF source code also helped me a great deal in understanding how it worked ---- EDIT ---- (thanks Daniel :-) For this to work you need to have SAAJOutInterceptor configured in your stack. You can either add it manually or simply make it part of your interceptor. http://permalink.gmane.org/gmane.comp.apache.cxf.user/11247 an example of an interceptor that pretty much does what you want.
kiwifrog at Stack Overflow Visit the source
Other answers
Refer to this link for a description of the Interceptor Phases http://fusesource.com/docs/esb/4.2/cxf_interceptors/CXFInterceptPhasesAppx.html
user745079
Related Q & A:
- How To Modify Car?Best solution by Yahoo! Answers
- How to modify PATH variable for X11 during log-in?Best solution by Super User
- How to modify a schema.xml of an existing list?Best solution by SharePoint
- How to send SOAP request Android?Best solution by Stack Overflow
- How to create SOAP request?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.