I need to test some XML requests manually, i.e. I want to call a webservice method with an XML request previously created. I'm trying to use the SoapClient __doRequest, and all I get back is a blank, empty response.
I already read the documentation, and several other posts here and seems no one has tried this before and the few who asked similar question, got really no response.
Again, the reason of doing it this way it's just a way to test an XMLRequest generated by other tool that is causing problems at certain webservice. So, I can't call the soapclient generated methods, nor I can't call "_call". I need to send my own previously created XML request using SOAPClient. Is this possible? If so how....
$result = $soapClient->__doRequest($docRequest, "http://someservice.asmx", "http://someservice/Login", soap_1_2, 0);
When I call this I get null at $result without any error.