欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP使用SOAP调用.net的WebService数据

程序员文章站 2022-07-03 12:26:24
这个与一般的php post或get传值再查库拿数据的思路有点不一样,需要用到soap模块,处理方法也很简单,就是有一些需要注意的事情。首先确认你的php.ini开启了.s...
这个与一般的php post或get传值再查库拿数据的思路有点不一样,需要用到soap模块,处理方法也很简单,就是有一些需要注意的事情。
首先确认你的php.ini开启了.soap,就是 extension=php_soap.dll 这前面的分号去咯。
代码很简单:
复制代码 代码如下:

<?php
$client = new soapclient('http://www.aa.net/searchservice.asmx?wsdl');//这个soap地址要换成你自己的
$client->soap_defencoding = 'utf-8'; 
$client->decode_utf8 = false;  
$client->xml_encoding = 'utf-8';
$param = array('param1'=>'01', 'param2'=>'02');
//$param["param1"]="01";
//$param["param2"]="02";
//$result = $client->__soapcall("getarticle", array( $param ));
$result = $client->__call("getarticle", array( $param ));
if (is_soap_fault($result))
{
    trigger_error("soap fault: (faultcode: {$result->faultcode}, faultstring: {$result->faultstring})", e_user_error);
}
else
{
    $data = $result->getarticleresult; //这里返回的是类,必须使用->得到元素的值
    print_r($data);
}
?>

需要注意的一点是,参数是数组外再包一层数组,就是 array( array() )
附soap接口的一些参数:
以下是 soap 1.2 请求和响应示例。所显示的占位符需替换为实际值。
复制代码 代码如下:

post /searchservice.asmx http/1.1
host: 202.105.183.61
content-type: text/xml; charset=utf-8
content-length: length
soapaction: "http://tempuri.org/gettrafficviolationinfo"
<?xml version="1.0" encoding="utf-8"?>
<soap:envelope xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:body>
    <getarticle xmlns="http://tempuri.org/">
      <param1>string</param1>
      <param2>string</param2>
    </getarticle>
  </soap:body>
</soap:envelope>