Bernhard Mähr created CXF-8226:
----------------------------------
Summary: Not able to log webservice calls with corrupt data
Key: CXF-8226
URL: https://issues.apache.org/jira/browse/CXF-8226
Project: CXF
Issue Type: Improvement
Components: logging
Affects Versions: 3.3.5
Reporter: Bernhard Mähr
We are providing a webservice connected by multiple customers with no or not
much technical knowledge and existing old software. To support them it would be
helpful to be able to log webservice calls which even cant be parsed.
I have implemented a solution by replacing the OutFaultChainInitiatorObserver
with a custom version which logs the in message before continuing.
{code:java}
public class MyOutFaultChainInitiatorObserver extends
OutFaultChainInitiatorObserver {
@Override
public void onMessage(final Message message) {
MySlf4jVerboseEventSender.in.handleMessage(message);
super.onMessage(message);
}
}
{code}
But it is not ea really clean solution.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)