我有以下用于服务调用的代码,我想打印响应 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
谢谢