I have the following piece of code for a service call and I want to print the response SOAP message. I am using a stub generated using apache axis. How can i do this?
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
Thanks