How can I find the exact soap request and response generated. Here is the sample code I am using:
@WebService(targetNamespace = "", name = "")
@XmlSeeAlso({ObjectFactory.class})
public interface ServiceSoap {
@WebMethod(action = "")
@RequestWrapper(localName = "", targetNamespace = "", className = "")
@ResponseWrapper(localName = "", targetNamespace = "", className = "")
@WebResult(name = "", targetNamespace = "")
public ResponseType sampleRequest(@WebParam(name = "", targetNamespace = "")java.lang.String str);
}
This is invoked by the following code snippet
ResponseType response = serviceSoap.sampleRequest(str);
I want to find what is the exact soap request/response generated.