2

我有以下用于服务调用的代码,我想打印响应 SOAP 消息。我正在使用使用 apache 轴生成的存根。我怎样才能做到这一点?

service = new RateServiceLocator();
updateEndPoint(service);
port = service.getRateServicePort();
// This is the call to the web service passing in a RateRequest and
// returning a RateReply
RateReply reply = port.getRates(request); // Service call

谢谢

4

1 回答 1

0

我创建自己的日志处理程序,并配置 AXIS(通过 wsdd 文件)在每个传入请求/传出响应上调用它。

请看下一个链接:

如何在 AXIS 1.x 中使用 Log4J SOAP 请求和响应进行日志记录?

于 2012-10-10T08:00:56.423 回答