我有一个 Zend 后端和一个 Zend 前端,两者都通过 SOAP 进行通信。后端出现异常,应在前端抛出异常/SoapFault。这适用于错误消息,但错误代码会以某种方式丢失。我需要代码能够在前端以不同语言显示错误。我尝试了很多,但无法让它工作。
这是我的 SoapController 的后端 handleSoap 函数:
private function handleSOAP($class) {
$options = array('uri' => 'urn:'.$class.'','location' => $this->_WSDL_URI);
$server = new Zend_Soap_Server(null, $options);
$server->setEncoding('ISO-8859-1');
$server->setClass($class);
$server->registerFaultException('Exception');
$server->handle();
}
在前端的 SoapCallerClass:
public function __construct() {
$this->client = new Zend_Soap_Client($this->_WSDL_URI);
$this->client->setWsdlCache(WSDL_CACHE_NONE);
$this->client->setEncoding('ISO-8859-1');
}
public function __call($method,$params) {
try {
$this->client->mySoapFunction();
} catch (Exception $e) {
throw $e; // No error code inside !
}
}