i have a problem working with PHP SoapClient with a WS (WSDL) that contains https. my PHP version is 5.2.5. before you ask, yes, i am using PHP's Soap and openSSL extentions.
the URL i am trying to reach is: https://id3check.gb.co.uk/gbportalinternational/aspx/id3check_1b.asmx?WSDL
i kullanıyorum kodu:
$url = "https://id3check.gb.co.uk/gbportalinternational/aspx/id3check_1b.asmx?WSDL";
$options["connection_timeout"] = 25;
$options["location"] = $url;
$client = new SoapClient($url,$options);
SoapClient inşa, ve ben aşağıdaki hatayı alıyorum yüklerken başarısız:
Uyarı: SoapClient :: SoapClient (https://id3check.gb.co.uk/gbportalinternational/aspx/id3check_1b.asmx?WSDL): Bağlı parti düzgün bir süre sonra yanıt vermedi çünkü bir bağlantı girişimi başarısız oldu: failed to open stream bağlanılan ana makine yanıt başarısız oldu, çünkü zaman veya kurulan bağlantı başarısız oldu. C: satırında \ MY-DEV-KLASÖR \ index.php 42 Uyarı: SoapClient :: SoapClient (): I / O uyarı: "Harici varlık yüklenemedi https://id3check.gb.co.uk/gbportalinternational/ ? C aspx/id3check_1b.asmx WSDL: "satırında \ MY-DEV-KLASÖR \ index.php 42 özel durum - SABUN-HATA: WSDL Ayrıştırma: https://id3check.gb.co 'dan yüklenemedi. uk/gbportalinternational/aspx/id3check_1b.asmx? WSDL '
Herkes sorunun ne olduğunu bana söyleyebilir?
teşekkürler
Erez