PHP中soap的具体用法分析如下:
PHP 使用soap有两种方式。
一、用wsdl文件
服务器端:
01 | <?php |
02 | class service |
03 | { |
04 | public function HelloWorld() |
05 | { |
06 | return "Hello Camnpr.Com" ; |
07 | } |
08 | public function Add( $a , $b ) |
09 | { |
10 | return $a + $b ; |
11 | } |
12 | } |
13 | $server = new SoapServer( 'soap.wsdl' , array ( 'soap_version' => SOAP_1_2)); |
14 | $server ->setClass( "service" ); |
15 | $server ->handle(); |
16 | ?> |
资源描述文件,可以用工具(zend studio)生成。其实就是一个xml文件。
01 | <? xml version = "1.0" encoding = "UTF-8" ?> |
02 | < wsdl:definitions xmlns:soap = "http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns = "http://localhost/interface/" xmlns:wsdl = "http://schemas.xmlsoap.org/wsdl/" xmlns:xsd = "2001/XMLSchema" name = "soap" targetNamespace = "http://localhost/interface/" > |
03 | < wsdl:types > |
04 | < xsd:schema targetNamespace = "http://localhost/interface/" > |
05 | < xsd:element name = "HelloWorld" > |
06 | < xsd:complexType > |
07 | < xsd:sequence > |
08 | < xsd:element name = "in" type = "xsd:string" /> |
09 | </ xsd:sequence > |
10 | </ xsd:complexType > |
11 | </ xsd:element > |
12 | < xsd:element name = "HelloWorldResponse" > |
13 | < xsd:complexType > |
14 | < xsd:sequence > |
15 | < xsd:element name = "out" type = "xsd:string" /> |
16 | </ xsd:sequence > |
17 | </ xsd:complexType > |
18 | </ xsd:element > |
19 | < xsd:element name = "Add" > |
20 | < xsd:complexType > |
21 | < xsd:sequence > |
22 | < xsd:element name = "in" type = "xsd:int" ></ xsd:element > |
23 | </ xsd:sequence > |
24 | </ xsd:complexType > |
25 | </ xsd:element > |
26 | < xsd:element name = "AddResponse" > |
27 | < xsd:complexType > |
28 | < xsd:sequence > |
29 | < xsd:element name = "out" type = "xsd:int" ></ xsd:element > |
30 | </ xsd:sequence > |
31 | </ xsd:complexType > |
32 | </ xsd:element > |
33 | </ xsd:schema > |
34 | </ wsdl:types > |
35 | < wsdl:message name = "AddRequest" > < wsdl:part name = "a" type = "xsd:int" ></ wsdl:part > |
36 | < wsdl:part name = "b" type = "xsd:int" ></ wsdl:part > |
37 | </ wsdl:message > |
38 | < wsdl:message name = "AddResponse" > |
39 | < wsdl:part name = "c" type = "xsd:int" ></ wsdl:part > |
40 | </ wsdl:message > |
41 | < wsdl:portType name = "TestSoap" > < wsdl:operation name = "Add" > |
42 | < wsdl:input message = "tns:AddRequest" ></ wsdl:input > |
43 | < wsdl:output message = "tns:AddResponse" ></ wsdl:output > |
44 | </ wsdl:operation > |
45 | </ wsdl:portType > |
46 | < wsdl:binding name = "soapSOAP" type = "tns:TestSoap" > |
47 | < soap:binding style = "document" |
48 | transport = "http://schemas.xmlsoap.org/soap/http" /> |
49 | < wsdl:operation name = "Add" > |
50 | < soap:operation soapAction = "http://localhost/interface/Add" /> |
51 | < wsdl:input > |
52 | < soap:body use = "literal" |
53 | namespace = "http://localhost/interface/" /> |
54 | </ wsdl:input > |
55 | < wsdl:output > |
56 | < soap:body use = "literal" |
57 | namespace = "http://localhost/interface/" /> |
58 | </ wsdl:output > |
59 | </ wsdl:operation > |
60 | </ wsdl:binding > |
61 | < wsdl:service name = "TestSoap" > |
62 | < wsdl:port binding = "tns:soapSOAP" name = "soapSOAP" > |
63 | < soap:address location = "http://localhost/interface/myservice.php" /> |
64 | </ wsdl:port > |
65 | </ wsdl:service > |
66 | </ wsdl:definitions > |
客户端调用:
二、不用wsdl文件
服务器端:
01 | <?php |
02 | class service |
03 | { |
04 | public function HelloWorld() |
05 | { |
06 | return "Hello Camnpr.Com" ; |
07 | } |
08 | public function Add( $a , $b ) |
09 | { |
10 | return $a + $b ; |
11 | } |
12 | } |
13 | $server = new SoapServer(null, array ( 'uri' => "abcd" )); |
14 | $server ->setClass( "service" ); |
15 | $server ->handle(); |
16 | ?> |
客户端:
01 | <?php |
02 | try{ |
03 | $soap = new SoapClient(null, array ( |
04 | "location" => "http://localhost/interface/soap.php" , |
05 | "uri" => "abcd" , //资源描述符服务器和客户端必须对应 |
06 | "style" => SOAP_RPC, |
07 | "use" => SOAP_ENCODED |
08 | )); |
09 | echo $soap ->Add(1,2); |
10 | }catch(Exction $e ){ |
11 | echo print_r( $e ->getMessage(),true); |
12 | } |
13 | ?> |