为 JAVA CONSOLE CLIENT 打印 SOAP 消息
我正在使用第三方 Web 服务开发 java 控制台客户端。在我指向他们的 WSDL 后,我就能够获取他们的代码并发送 SOAP 请求和响应。我想将这些事务记录在日志文件中。关于如何在客户端记录 SOAP 消息的任何想法。
提前致谢, 普拉文·G.
I am developing a java console client using a third party web service. After I point to their WSDL, I am able to get their code and send SOAP request and response. I want to log those transactions in a log file. Any idea on how to log a SOAP message at the client side.
Thanks in advance,
Praveen G.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Web 服务堆栈提供了方便的出入拦截器,用于拦截客户端和服务器端的传出请求和传入响应。您应该能够使用此功能来记录来自客户端的传出请求和传入响应,这是使用 Apache CXF 并使用 Spring-WS
Webservice Stacks provide convenient out and in interceptors for intercepting outgoing requests and incoming responses both on the client and server side. You should be able to use this feature to log outgoing requests from your client and incoming responses, here is a sample using Apache CXF and using Spring-WS