php调用webservice的几种方法

原文:php调用webservice的几种方法

1.WSDL模式:

extension = php_soap.dll

extension = php_curl.dll

extension = php_openssl.dll

<?php

header("content-type:text/html;charset=utf-8");

$client = new SoapClient("http://url/ooxx.asmx?wsdl");

$param = array(‘参数‘=>‘值‘,‘参数‘=>‘值‘);

$p = $client->__soapCall(‘调用方法名‘,array(‘parameters‘ => $param));

print_r($p->调用方法名Result);

?>

$soap = new SoapClient("http://192.168.6.69:8899/Service1.asmx?wsdl");
$result2 = $soap->HelloWorld(array(
	‘myName‘=>‘aaa‘,
	‘youName‘=>‘bbb‘
));
print_r($result2);

 2.non-WSDL模式:

2.1使用SoapParam传递参数:
$soap = new SoapClient(null,array(‘location‘=>‘http://192.168.6.72:8036/Service1.asmx‘,‘uri‘=>‘http://tempuri.org/‘));
$result2 = $soap->__soapCall("HelloWorld",
array(new SoapParam("aaa", "myName"),new SoapParam("bbb", "youName")),
//array(new SoapParam("aaa", "ns1:myName"),new SoapParam("bbb", "ns1:youName")),
array(‘soapaction‘=>‘http://tempuri.org/HelloWorld‘));
print_r($result2);	

2.2使用SoapVar传递参数
$ns = ‘http://tempuri.org/‘;
$soap = new SoapClient(null,array(‘location‘=>‘http://192.168.6.72:8036/Service1.asmx‘,‘uri‘=>$ns));
$result2 = $soap->__soapCall("HelloWorld",
array(new SoapVar("AAA", XSD_STRING, null, $ns, "myName", $ns),
new SoapVar("GBBB", XSD_STRING, null, $ns, "youName", $ns)),
array(‘soapaction‘=>‘http://tempuri.org/HelloWorld‘));
print_r($result2);

3.添加安全Header
$soap = new SoapClient(null,array(‘location‘=>‘http://192.168.6.47/onvif/device_service‘,‘uri‘=>‘http://www.onvif.org/ver10/device/wsdl/‘));
//ws
$ns_wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";//WS-Security namespace
$ns_wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";//WS-Security namespace

$userT = new SoapVar(‘admin‘, XSD_STRING, NULL, $ns_wsse, NULL, $ns_wsse);
$passwT = new SoapVar(‘NnYZe7oD81Kd8QRS4tUMze/2CUs=‘, XSD_STRING, NULL, $ns_wsse, NULL, $ns_wsse);
$createdT = new SoapVar(time(), XSD_DATETIME, NULL, $ns_wsu, NULL, $ns_wsu);
class UsernameT1 {
private $Username;
//Name must be  identical to corresponding XML tag in SOAP header
private $Password;
// Name must be  identical to corresponding XML tag in SOAP header
private $Created;
  function __construct($username, $password, $created) {
	     $this->Username=$username;
	     $this->Password=$password;
	     $this->Created=$created;
    }
}
$tmp = new UsernameT1($userT, $passwT, $createdT);
$uuT = new SoapVar($tmp, SOAP_ENC_OBJECT, NULL,
$ns_wsse, ‘UsernameToken‘, $ns_wsse);

class UserNameT2 {
private $UsernameToken;
//Name must be  identical to corresponding XML tag in SOAP header
function __construct ($innerVal){
	$this->UsernameToken = $innerVal;
}
}
$tmp = new UsernameT2($uuT);
$userToken = new SoapVar($tmp, SOAP_ENC_OBJECT, NULL, $ns_wsse, ‘UsernameToken‘, $ns_wsse);

$secHeaderValue=new SoapVar($userToken, SOAP_ENC_OBJECT, NULL,
                                        $ns_wsse, ‘Security‘, $ns_wsse);
$secHeader = new SoapHeader($ns_wsse, ‘Security‘, $secHeaderValue);
$result2 = $soap->__soapCall("GetDeviceInformation",array(),null,$secHeader);
echo $result2;
时间: 2024-10-11 03:33:25

php调用webservice的几种方法的相关文章

C#调用webService的几种方法

转自: WebClient 用法小结 http://www.cnblogs.com/hfliyi/archive/2012/08/21/2649892.html http://www.cnblogs.com/wpdev/archive/2011/08/22/about-webclient.html 网络编程之webclient和httpwebrequest的使用 http://www.cnblogs.com/cxd4321/p/3960538.html C#调用WebService http:/

Jquery调用webService的四种方法

1.编写4种WebService方法 [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [ScriptService] //令WebService成功传入Json参数,并以Json形式返回结果 [GenerateScriptType(typeof(Person))] //不是必要,但推荐添加(如果Person里面再嵌套

java调用webservice接口 几种方法

webservice的 发布一般都是使用WSDL(web service descriptive language)文件的样式来发布的,在WSDL文件里面,包含这个webservice暴露在外面可供使用的接口.今天搜索到了非常好的 webservice provider列表 http://www.webservicex.net/WCF/default.aspx 这上面列出了70多个包括很多方面的free webservice provider,utilities->global weather就

[转]Delphi调用cmd的两种方法

delphi调用cmd的两种方法vars:string;begins:='cmd.exe /c '+edit1.Text+' >c:\1.txt';winexec(pchar(s),sw_hide);sleep(2000);memo1.Lines.LoadFromFile('c:\1.txt'); 2shellexecute(handle,nil,'cmd.exe',pchar(form2.edit1.text),nil,sw_hide);WinExec主要运行EXE文件.如:WinExec(’

Magento中,调用静态块的几种方法[magento 二次开发]

在后台创建一个order_form静态块 Block Title :Order Form Identifier :order_form Status :Enabled Content :自定义内容 1.如果要在.phtml文件中直接调用这个静态块,那可以采用以下方法 [php] view plaincopy <?php $block = Mage::getModel('cms/block') ->setStoreId(Mage::app()->getStore()->getId()

a 中调用js的几种方法

我们常用的在a标签中有点击事件:1. a href="javascript:js_method();" 这是我们平台上常用的方法,但是这种方法在传递this等参数的时候很容易出问题,而且javascript:协议作为a的href属性的时候不仅会导致不必要的触发window.onbeforeunload事件,在IE里面更会使gif动画图片停止播放.W3C标准不推荐在href里面执行javascript语句 2. a href="javascript:void(0);"

Python调用系统命令的6种方法

Python调用系统命令的6种方法在Python中调用系统命令一般使用os或者subprocess模块,下面介绍Python中最常用的6种调用系统命令的方法.1.os.system()该函数返回命令执行结果的返回值,system()函数在执行过程中进行了以下三步操作:1.fork一个子进程:2.在子进程中调用exec函数去执行命令:3.在父进程中调用wait(阻塞)去等待子进程结束.返回0表示命令执行成功,其他表示失败.用法:os.system("command")2.os.popen

C# .NET 动态调用webservice的三种方式

转载自 百度文库 http://wenku.baidu.com/link?url=Q2q50wohf5W6UX44zqotXFEe_XOMaib4UtI3BigaNwipOHKNETloMF4ax4W4iPZcjAW6q8vu45QOjK6DSUon1R10ePVlqG6nwussbbXE6jm 多数时候我们通过 "添加 Web 引用..." 创建客户端代理类的方式调用WebService,但在某些情况下我们可能需要在程序运行期间动态调用一个未知的服务.在 .NET Framework

C# 调用WebService的3种方式 :直接调用、根据wsdl生成webservice的.cs文件及生成dll C#调用、动态调用

1.直接调用 已知webservice路径,则可以直接 添加服务引用--高级--添加web引用 直接输入webservice URL.这个比较常见也很简单 即有完整的webservice文件目录如下图所示, 也可以在本地IIS根据webservice文件目录新发布一个webservice,然后程序动态调用,修改Url public new string Url { set; get; } 2.根据wsdl文件生成webservice 的.cs文件 及 生成dll C#调用   有时没有这么多文件