如何从PHP发布SOAP请求

任何人都知道我怎么能张贴来自PHP的SOAP请求?

根据我的经验,这不是那么简单。 内置的PHP SOAP客户端不能使用我们必须使用的基于.NET的SOAP服务器。 它抱怨无效的模式定义。 即使.NET客户端与该服务器工作得很好。 顺便说一下,让我声称SOAP互操作性是一个神话。

下一步是NuSOAP 。 这工作了一段时间。 顺便说一句,看在上帝的份上,不要忘了cachingWSDL! 但即使有WSDLcaching的用户抱怨这个该死的东西也很慢。

然后,我们决定去使用HTTP,组装请求并使用SimpleXMLElemnt读取响应,如下所示:

 $request_info = array(); $full_response = @http_post_data( 'http://example.com/OTA_WS.asmx', $REQUEST_BODY, array( 'headers' => array( 'Content-Type' => 'text/xml; charset=UTF-8', 'SOAPAction' => 'HotelAvail', ), 'timeout' => 60, ), $request_info ); $response_xml = new SimpleXMLElement(strstr($full_response, '<?xml')); foreach ($response_xml->xpath('//@HotelName') as $HotelName) { echo strval($HotelName) . "\n"; } 

请注意,在PHP 5.2中,您将需要pecl_http,只要(令人吃惊的是!)没有内置的HTTP客户端。

裸露HTTP在SOAP请求时间中获得了超过30%的利益。 从那时起,我们将所有的性能投诉redirect到服务器人员。

最后,我会推荐后一种方法,而不是因为性能。 我认为,一般来说,在像PHP这样的dynamic语言中,WSDL /types控制没有任何好处 。 您不需要一个花哨的库来读取和写入XML,包含所有的存根和dynamic代理。 你的语言已经是dynamic的, SimpleXMLElement工作得很好,而且易于使用。 而且,你会有更less的代码 ,这总是很好。

PHP有SOAP支持。 打电话

 $client = new SoapClient($url); 

连接到SoapServer,然后你可以得到函数和调用函数的列表只需做…

 $client->__getTypes(); $client->__getFunctions(); $result = $client->functionName(); 

更多http://www.php.net/manual/en/soapclient.soapclient.php

我需要做很多非常简单的XML请求,在阅读@Ivan Krechetov关于SOAP速度命中的评论之后,我尝试了他的代码,发现http_post_data()没有内置到PHP 5.2中。 不是真的想要安装它,我尝试了所有服务器上的cURL。 虽然我不知道cURL和SOAP相比有多快,但是我确实很容易做到我所需要的。 以下是cURL的示例,供需要的人使用。

 $xml_data = '<?xml version="1.0" encoding="UTF-8" ?> <priceRequest><customerNo>123</customerNo><password>abc</password><skuList><SKU>99999</SKU><lineNumber>1</lineNumber></skuList></priceRequest>'; $URL = "https://test.testserver.com/PriceAvailability"; $ch = curl_init($URL); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml')); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "$xml_data"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); curl_close($ch); print_r($output); 

你可能想看看这里和这里 。

来自第一个链接的小代码示例:

 <?php // include the SOAP classes require_once('nusoap.php'); // define parameter array (ISBN number) $param = array('isbn'=>'0385503954'); // define path to server application $serverpath ='http://services.xmethods.net:80/soap/servlet/rpcrouter'; //define method namespace $namespace="urn:xmethods-BNPriceCheck"; // create client object $client = new soapclient($serverpath); // make the call $price = $client->call('getPrice',$param,$namespace); // if a fault occurred, output error info if (isset($fault)) { print "Error: ". $fault; } else if ($price == -1) { print "The book is not in the database."; } else { // otherwise output the result print "The price of book number ". $param[isbn] ." is $". $price; } // kill object unset($client); ?> 

下面是如何做到这一点(这是最好的解释这个问题给我),我基本上在这个网站find一个简单的例子。 该网站链接也解释了WSDL,这对于使用SOAP服务非常重要。

但是,我不认为他们在下面的例子中使用的API地址仍然有效,所以只需要自己select一个。

 $wsdl = 'http://terraservice.net/TerraService.asmx?WSDL'; $trace = true; $exceptions = false; $xml_array['placeName'] = 'Pomona'; $xml_array['MaxItems'] = 3; $xml_array['imagePresence'] = true; $client = new SoapClient($wsdl, array('trace' => $trace, 'exceptions' => $exceptions)); $response = $client->GetPlaceList($xml_array); var_dump($response); 

我们可以使用PHP cURL库来生成简单的HTTP POST请求。 以下示例显示如何使用cURL创build简单的SOAP请求。

创buildsoap-server.php,将SOAP请求写入web文件夹中的soap-request.xml。

 We can use the PHP cURL library to generate simple HTTP POST request. The following example shows you how to create a simple SOAP request using cURL. Create the soap-server.php which write the SOAP request into soap-request.xml in web folder. <?php $HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : ''; $f = fopen("./soap-request.xml", "w"); fwrite($f, $HTTP_RAW_POST_DATA); fclose($f); ?> The next step is creating the soap-client.php which generate the SOAP request using the cURL library and send it to the soap-server.php URL. <?php $soap_request = "<?xml version=\"1.0\"?>\n"; $soap_request .= "<soap:Envelope xmlns:soap=\"http://www.w3.org/2001/12/soap-envelope\" soap:encodingStyle=\"http://www.w3.org/2001/12/soap-encoding\">\n"; $soap_request .= " <soap:Body xmlns:m=\"http://www.example.org/stock\">\n"; $soap_request .= " <m:GetStockPrice>\n"; $soap_request .= " <m:StockName>IBM</m:StockName>\n"; $soap_request .= " </m:GetStockPrice>\n"; $soap_request .= " </soap:Body>\n"; $soap_request .= "</soap:Envelope>"; $header = array( "Content-type: text/xml;charset=\"utf-8\"", "Accept: text/xml", "Cache-Control: no-cache", "Pragma: no-cache", "SOAPAction: \"run\"", "Content-length: ".strlen($soap_request), ); $soap_do = curl_init(); curl_setopt($soap_do, CURLOPT_URL, "http://localhost/php-soap-curl/soap-server.php" ); curl_setopt($soap_do, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($soap_do, CURLOPT_TIMEOUT, 10); curl_setopt($soap_do, CURLOPT_RETURNTRANSFER, true ); curl_setopt($soap_do, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($soap_do, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($soap_do, CURLOPT_POST, true ); curl_setopt($soap_do, CURLOPT_POSTFIELDS, $soap_request); curl_setopt($soap_do, CURLOPT_HTTPHEADER, $header); if(curl_exec($soap_do) === false) { $err = 'Curl error: ' . curl_error($soap_do); curl_close($soap_do); print $err; } else { curl_close($soap_do); print 'Operation completed without any errors'; } ?> Enter the soap-client.php URL in browser to send the SOAP message. If success, Operation completed without any errors will be shown and the soap-request.xml will be created. <?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> <soap:Body xmlns:m="http://www.example.org/stock"> <m:GetStockPrice> <m:StockName>IBM</m:StockName> </m:GetStockPrice> </soap:Body> </soap:Envelope> Original - http://eureka.ykyuen.info/2011/05/05/php-send-a-soap-request-by-curl/