Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I'm trying to connect to a Java web-service using the Zend_Soap_Client from the Zend Framework 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>'; 
?>

Outputs:

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

Any idea what could be wrong? The url is correct, since I get the availible functions when calling

$client->getFunctions()
like image 599
Mads Mobæk Avatar asked Oct 24 '09 12:10

Mads Mobæk


1 Answers

According to this listing, the exception indicates that the server hosting the web-service is not happy with your requests encoding:

Indicates that the peer HTTP server does not support the Content-type used to encode the request message. The message exchange is regarded as having completed unsuccessfully.

So you should check with the web-service provider concerning the content-type/encoding they expect.

A possible solution if you are using SOAP_1_2is to change to SOAP_1_1 since that will alter the requests made.

like image 93
Henrik Opel Avatar answered Oct 20 '22 03:10

Henrik Opel