的SOAPFault例外:[HTTP]不支持的媒体类型从PHP访问Java Web服务时(SoapF

2019-08-31 23:19发布

我试图连接到使用一个Java Web服务Zend_Soap_Client从Zend框架v1.9.0:

<?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

任何想法可能是错误的? 网址是正确的,因为我得到的菱函数调用时

$client->getFunctions()

Answer 1:

根据此房源的异常指示承载Web服务的服务器并不快乐着你的请求编码:

指示对端HTTP服务器不支持用于编码请求消息中的内容类型。 消息交换被视为已成功地完成。

所以,你应该检查有关他们所期望的内容类型/编码的网络服务提供商。

如果您使用的是可能的解决方案SOAP_1_2是改变以SOAP_1_1因为这将改变提出的要求。



Answer 2:

我没有使用Zend框架,但不得不使用XMLHttpRequest JavaScript中类似的问题。 解决的办法是指定在SOAP请求报头中的内容类型。

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);


文章来源: SoapFault exception: [HTTP] Unsupported Media Type when accessing Java web-service from PHP