hi all..
just wanted to make sure that i'm not doing anything wrong.
i create the soap client object and then do
$r = client->__doRequest($str, $url, $url, 1, 0);
where the $str is an xml file the "client" provided and the $url is the service address.
i'm supposed to get an xml file/string back. but i don't see anything back and there are no warnings or errors. before i start asking them i just wanted to make sure the doRequest function is being used correctly....
tried:
$r = client->__doRequest($str, $url, $url, 1, 0);
if (is_soap_fault($r)) {
trigger_error("SOAP Fault: (faultcode: {$result->faultcode}, faultstring: {$result->faultstring})", E_USER_ERROR);
}
but still nothing gets printed on the screen or the log.
is the __doRequest function used correctly here?
thanks...