Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.7.2
-
None
-
Unknown
Description
The TransformOutInterceptor skips the processing of fault messages by the following lines
// org.apache.cxf.interceptor.transform.TransformOutInterceptor#handleFault if (null != message.getContent(Exception.class)) { return; }
Hence, there is no way to apply transformations on SoapFault messages. Suggestion from the mailthread: Either use a boolean flag to toggle the behavior (i.e. boolean skipFaultMessages) or make this explicit by providing a TransformOutFaultInterceptor.
more information can be found in this mailing list thread: