如何从apache cxf拦截器提取xml有效内容并将其保存到文件系统

时间:2019-01-12 06:51:42

标签: spring-boot soap cxf

我正在使用Apache CXF LoggingInInterceptor和LoggingOutInterceptor记录往返于肥皂端点的XML请求和响应,我可以在日志中看到有效负载,但似乎无法弄清楚如何提取XML有效负载并保存它们到文件系统。

Client client = ClientProxy.getClient(servicePortType);
client.getInInterceptors().add(new LoggingInInterceptor());
client.getOutInterceptors().add(new LoggingOutInterceptor());

请提出任何解决方案或为我提供有关如何提取和保存有效载荷的想法。

谢谢

0 个答案:

没有答案