我正在尝试使用 Zend Framework v1.9.0 中的
Zend_Soap_Client
连接到 Java Web 服务:
<?php
include( 'Zend/Loader/Autoloader.php');
$autoloader = Zend_Loader_Autoloader::getInstance();
$client = new Zend_Soap_Client('https://webservice.com/webservice-war/webservice?wsdl'
, array('encoding'=> 'UTF-8'));
try{
$result = $client->find_customer(array('username' => 'user',
'password' => '123'), array('city' => 'some city'));
} catch(Exception $e){
echo $e;
}
echo '<pre>' . $client->getLastRequestHeaders() . '</pre>';
?>
输出:
SoapFault exception: [HTTP] Unsupported Media Type in
/Library/ZendFramework-1.9.0/library/Zend/Soap/Client.php:937
Stack trace:
#0 [internal function]:
SoapClient->__doRequest('_doRequest(Object(Zend_Soap_Client_Common),
'__doRequest('__soapCall('find_customer', Array, NULL, NULL, Array)
#6 [internal function]:
Zend_Soap_Client->__call('find_customer', Array)
#7 /Users/webservicetest/index.php(8):
Zend_Soap_Client->find_customer(Array, Array)
#8 {main}
POST /webservice-war/webservice HTTP/1.1
Host: webservice.com
Connection: Keep-Alive
User-Agent: PHP-SOAP/5.2.6
Content-Type: application/soap+xml; charset=utf-8; action=""
Content-Length: 315
知道哪里出了问题吗? url 是正确的,因为我在调用时获得了可用的函数
$client->getFunctions()
根据this listing,异常表明托管网络服务的服务器对您的请求编码不满意:
表示对端HTTP服务器 不支持使用的内容类型 对请求消息进行编码。这 消息交换被认为具有 未成功完成。
因此,您应该向 Web 服务提供商咨询他们期望的内容类型/编码。
如果您正在使用
SOAP_1_2
,一个可能的解决方案是更改为 SOAP_1_1
,因为这会改变所提出的请求。
我没有使用 Zend 框架,但在 JavaScript 中使用 XMLHttpRequest 时遇到了类似的问题。解决方案是在 SOAP 请求标头中指定 Content-Type。
var sr = '<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.w3schools.com/webservices/"> <SOAP-ENV:Body><ns1:CelsiusToFahrenheit><ns1:Celsius>32</ns1:Celsius></ns1:CelsiusToFahrenheit></SOAP-ENV:Body></SOAP-ENV:Envelope>';
http_request = new XMLHttpRequest();
http_request.open('POST', 'http://www.w3schools.com/webservices/tempconvert.asmx', true);
http_request.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
http_request.send(sr);
其中一个评论中的严肃解决方案。发布为易于识别的答案。
尝试添加标题。
内容类型:文本/xml; charset=utf-8 for soap 1.1
和
内容类型:application/soap+xml; charset=utf-8 for soap 1.2