Answer the question
In order to leave comments, you need to log in
Why is the SOAP service not responding?
I'm trying to integrate with the service https://webservice.myschenker.fi/ewebs/dbs_service.svc
They have only 4 methods, I need "getCollectionPointsByPostalCode"
Here is a brief description www.noutopistepaketti.fi/Documents/201604_mySchenk...
For some reason when I send a request, I get the error "Could not connect to host".
Tech support says everything works for them.
Here is my code :
$soapParams = [
'trace' => true,
'cache_wsdl' => WSDL_CACHE_NONE,
"stream_context" => stream_context_create($stream_context_opts)
];
try {
$client = new SoapClient('https://webservice.myschenker.fi/ewebs/dbs_service.svc?wsdl' ,$soapParams);
$ty = $client->getCollectionPointsByPostalCode("02750");
var_dump($ty);
} catch (Exception $e) {
var_dump($e->getMessage());
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question