does anyone know what this means im doing a pretty simple call here in my indexAction -
private $wsdl = "https://mywsdlserver.com/open?wsdl";
$options = array(
"location"=>$this->wsdl,
"uri"=>$this->wsdl
);
$client = new Zend_Soap_Client($this->wsdl, $options);
print_r($client);
fyi i have tried this with and without the options when i set the options i get the error when i dont set the options i get an empty client
what id like to get back is the xml i get when i just put https://mywsdlserver.com/open?wsdl in the addressbar
thanks for your help