Hi all

I'm trying to transform a namespace in a SoapFault. At first glance, the StaxTransformFeature or the TransformOutInterceptor (which can be configured in the <outFaultInterceptors> list) looked promising. After playing around a bit, I realized that the TransformOutInterceptor might not be intended to transform the content of a SoapFault. In my understanding, the handleMessage() method prohibits this by the following line

// org.apache.cxf.interceptor.transform.TransformOutInterceptor#handleFault
if (null != message.getContent(Exception.class)) {
    return;
}

Is there an alternative approach that allows to transform namespaces in SoapFault messages?

cheers


--
Oliver Moser
http://www.omoser.com

Reply via email to