Zend Framework: catch özel sabun istisnalar

0 Cevap php

Bir sabun web hizmeti işlemi isterken nasıl benim özel sabun ProductoInexistente hata yakalamak mı? kodumu şu, ama işe yaramıyor:

$_WSDL_URI = 'http://joaquinlrobles.redirectme.net:8080/Pelopincho/PelopinchoService?WSDL';
$ws = new Zend_Soap_Client($_WSDL_URI, array('soap_version' => SOAP_1_1));
try {
 $resultado = $ws->getStockProducto(array('idProducto' => $idProducto));
 $this->view->resultado = $resultado->result;
}
catch (ProductoInexistente $ex) {
 $this->view->resultado = 'Producto Inexistente';
}

teşekkürler!

0 Cevap