设置Zend肥皂客户端内容类型

时间:2013-03-26 12:58:05

标签: php zend-framework soap soap-client

使用Zend SOAP客户端进行调用时,我似乎遇到以下错误。

“无法处理邮件,因为内容类型'application / soap + xml; charset = utf-8; action =”http://tempuri.org/ISendAPI/GetExchangeRateList“'不是预期的类型'text / xml ; charset = utf-8'。“

我有什么方法可以设置内容类型,无法在文档中找到任何内容

谢谢!

1 个答案:

答案 0 :(得分:6)

您是否尝试过将Soap客户端版本更改为例如1.1

$this->_soapClient->setSoapVersion(SOAP_1_1);

似乎有点儿马车: http://framework.zend.com/issues/browse/ZF-5286