Zend_Soap - Hata ayrıştırma WSDL: tag beklenen, '<' Başlat

0 Cevap php

Tamamen geçerli olan aynı WSDL, için, böyle ARMUT SOAP kullanarak düzgün erişmek mümkün duyuyorum:

$WSDL = new SOAP_WSDL($this->wsdlUrl);
$proxy = $WSDL->getProxy();

Ama bu gibi kullanılır Zend_Soap aracılığıyla iş yapmak mümkün değil:

$soapclient = new Zend_Soap_Client($this->wsdlUrl);

Zend_Soap_Client aracılığıyla erişilen zaman aşağıdaki hatayı alıyorum:

Error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://abc.xyz.com/agent/TestService.php?wsdl' : Start tag expected, '<' not found

Openssl is also enabled in my php.ini Does anybody know why it doesn't work? and how I can fix it to use Zend_Soap properly?

0 Cevap