i have a problem with SOAP, havent found a real answer.
try {
$objResponse = $objSoapClient->$strMethod($objMethod->getSoapRequest());
}
catch (SoapFault $e) {
GlobalLogState::write("exception with code(".$e->getCode()."): \n".$e->getMessage());
}
This is my simple SOAP request in try catch block.
I'm getting a SoapFault Exception:
Error Fetching http headers
What is the reason of that?