サービス呼び出し用の次のコードがあり、応答SOAPメッセージを出力したいと思います。ApacheAxisを使用して生成されたスタブを使用しています。これどうやってするの?
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
ありがとう