Is it possible to log the request/response as XML using CXF, ideally to a separate file so I can monitor what an application is doing?
|
The request soap xml can be logged easily by an custom In interceptor. Say, we have an interceptor named "wsLoggingInInterceptor", So in the context file it will be like the following :
In the class we can get the request xml as follows:
Look, here I have also log the address from where the request is coming. You can also get some more information from the "HttpServletRequest" object. you can have more from : http://cxf.apache.org/docs/interceptors.html To log response xml you can have a look at this thread |
||||
|
|
|
Add the following to your endpoints and clients:
This will log everything to the server log. If you want to log them elsewhere, then look at the source code of the built-in CXF LoggingInInterceptor and LoggingOutInterceptor. You can follow the pattern they use to grab the messages on their way in/out and do with them what you like. Add your own interceptors to the chain with something like this:
|
|||||
|
|
|
So, I tried a little more with this. To get the XML Request and Replies logged, and if you are using Log4J, you need to set the Log-level of CXF in the log4j.xml file like this (>= INFO):
And the cxf.xml file should contains this:
Both files should be in the CLASSPATH. |
|||
|
|