I auto generated WS client from WSDL file (using eclipse).
I am using this client to invoke a method, for example:
Proxy proxy = new Proxy();
try{
object view = proxy.invokeEndPoint(input);
}
catch (Exception e) {
e.printStackTrace();
}
This call invokes the operation and gives me a result (for HTTP it suppose to return a xml).
How do i get the entire xml response.
In reality i get an object (view) which can contain many other objects, how do i get the raw xml response?