php调用webservice的几种方法

来源:互联网 发布:sms软件 编辑:程序博客网 时间:2024/05/22 12:23

1.WSDL模式:

[php] view plaincopy
  1. $soap = new SoapClient("http://192.168.6.69:8899/Service1.asmx?wsdl");  
  2. $result2 = $soap->HelloWorld(array(  
  3.     'myName'=>'aaa',  
  4.     'youName'=>'bbb'  
  5. ));  
  6. print_r($result2);  


2.non-WSDL模式:

2.1使用SoapParam传递参数:

[php] view plaincopy
  1. $soap = new SoapClient(null,array('location'=>'http://192.168.6.72:8036/Service1.asmx','uri'=>'http://tempuri.org/'));  
  2. $result2 = $soap->__soapCall("HelloWorld",  
  3. array(new SoapParam("aaa""myName"),new SoapParam("bbb""youName")),  
  4. //array(new SoapParam("aaa", "ns1:myName"),new SoapParam("bbb", "ns1:youName")),  
  5. array('soapaction'=>'http://tempuri.org/HelloWorld'));  
  6. print_r($result2);    

2.2使用SoapVar传递参数

[php] view plaincopy
  1. $ns = 'http://tempuri.org/';  
  2. $soap = new SoapClient(null,array('location'=>'http://192.168.6.72:8036/Service1.asmx','uri'=>$ns));  
  3. $result2 = $soap->__soapCall("HelloWorld",  
  4. array(new SoapVar("AAA", XSD_STRING, null, $ns"myName"$ns),  
  5. new SoapVar("GBBB", XSD_STRING, null, $ns"youName"$ns)),  
  6. array('soapaction'=>'http://tempuri.org/HelloWorld'));  
  7. print_r($result2);  


3.添加安全Header

[php] view plaincopy
  1. $soap = new SoapClient(null,array('location'=>'http://192.168.6.47/onvif/device_service','uri'=>'http://www.onvif.org/ver10/device/wsdl/'));  
  2. //ws  
  3. $ns_wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";//WS-Security namespace  
  4. $ns_wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";//WS-Security namespace  
  5.   
  6. $userT = new SoapVar('admin', XSD_STRING, NULL, $ns_wsse, NULL, $ns_wsse);  
  7. $passwT = new SoapVar('NnYZe7oD81Kd8QRS4tUMze/2CUs=', XSD_STRING, NULL, $ns_wsse, NULL, $ns_wsse);  
  8. $createdT = new SoapVar(time(), XSD_DATETIME, NULL, $ns_wsu, NULL, $ns_wsu);  
  9. class UsernameT1 {  
  10. private $Username;   
  11. //Name must be  identical to corresponding XML tag in SOAP header  
  12. private $Password;   
  13. // Name must be  identical to corresponding XML tag in SOAP header   
  14. private $Created;  
  15.   function __construct($username$password$created) {  
  16.          $this->Username=$username;  
  17.          $this->Password=$password;  
  18.          $this->Created=$created;  
  19.     }  
  20. }  
  21. $tmp = new UsernameT1($userT$passwT$createdT);  
  22. $uuT = new SoapVar($tmp, SOAP_ENC_OBJECT, NULL,   
  23. $ns_wsse'UsernameToken'$ns_wsse);  
  24.   
  25. class UserNameT2 {  
  26. private $UsernameToken;    
  27. //Name must be  identical to corresponding XML tag in SOAP header  
  28. function __construct ($innerVal){  
  29.     $this->UsernameToken = $innerVal;  
  30. }  
  31. }  
  32. $tmp = new UsernameT2($uuT);  
  33. $userToken = new SoapVar($tmp, SOAP_ENC_OBJECT, NULL, $ns_wsse'UsernameToken'$ns_wsse);  
  34.   
  35. $secHeaderValue=new SoapVar($userToken, SOAP_ENC_OBJECT, NULL,   
  36.                                         $ns_wsse'Security'$ns_wsse);  
  37. $secHeader = new SoapHeader($ns_wsse'Security'$secHeaderValue);  
  38. $result2 = $soap->__soapCall("GetDeviceInformation",array(),null,$secHeader);  
  39. echo $result2;  



0 0
原创粉丝点击