<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>waimv.com &#187; soap</title>
	<atom:link href="http://www.waimv.com/tag/soap/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.waimv.com</link>
	<description></description>
	<lastBuildDate>Fri, 09 Nov 2018 10:41:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>php soap例子</title>
		<link>http://www.waimv.com/php/198/</link>
		<comments>http://www.waimv.com/php/198/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 07:35:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[soap]]></category>

		<guid isPermaLink="false">http://www.szpian.com/?p=198</guid>
		<description><![CDATA[&#60;?xml version="1.0" encoding="UTF-8"?&#62; &#60;wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://localhost/interface/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="soap" targetNamespace="http://localhost/interface/"&#62; &#60;wsdl:types&#62; &#60;xsd:schema targetNamespace="http://localhost/interface/"&#62; &#60;xsd:element name="HelloWorld"&#62; &#60;xsd:complexType&#62; &#60;xsd:sequence&#62; &#60;xsd:element name="in" type="xsd:string"/&#62; &#60;/xsd:sequence&#62; &#60;/xsd:complexType&#62; &#60;/xsd:element&#62; &#60;xsd:element name="HelloWorldResponse"&#62; &#60;xsd:complexType&#62; &#60;xsd:sequence&#62; &#60;xsd:element name="out" type="xsd:string"/&#62; &#60;/xsd:sequence&#62; &#60;/xsd:complexType&#62; &#60;/xsd:element&#62; &#60;xsd:element name="Add"&#62; &#60;xsd:complexType&#62; &#60;xsd:sequence&#62; &#60;xsd:element name="in" type="xsd:int"&#62;&#60;/xsd:element&#62; &#60;/xsd:sequence&#62; &#60;/xsd:complexType&#62; &#60;/xsd:element&#62; &#60;xsd:element name="AddResponse"&#62; &#60;xsd:complexType&#62; &#60;xsd:sequence&#62; &#60;xsd:element name="out" type="xsd:int"&#62;&#60;/xsd:element&#62; &#60;/xsd:sequence&#62; &#60;/xsd:complexType&#62; &#60;/xsd:element&#62; &#60;/xsd:schema&#62; &#60;/wsdl:types&#62; [...]]]></description>
			<content:encoded><![CDATA[<pre>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://localhost/interface/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="soap" targetNamespace="http://localhost/interface/"&gt;
  &lt;wsdl:types&gt;
    &lt;xsd:schema targetNamespace="http://localhost/interface/"&gt;
      &lt;xsd:element name="HelloWorld"&gt;
        &lt;xsd:complexType&gt;
          &lt;xsd:sequence&gt;
            &lt;xsd:element name="in" type="xsd:string"/&gt;
          &lt;/xsd:sequence&gt;
        &lt;/xsd:complexType&gt;
      &lt;/xsd:element&gt;
      &lt;xsd:element name="HelloWorldResponse"&gt;
        &lt;xsd:complexType&gt;
          &lt;xsd:sequence&gt;
            &lt;xsd:element name="out" type="xsd:string"/&gt;
          &lt;/xsd:sequence&gt;
        &lt;/xsd:complexType&gt;
      &lt;/xsd:element&gt;
      &lt;xsd:element name="Add"&gt;
      	&lt;xsd:complexType&gt;
      		&lt;xsd:sequence&gt;
      			&lt;xsd:element name="in" type="xsd:int"&gt;&lt;/xsd:element&gt;
      		&lt;/xsd:sequence&gt;
      	&lt;/xsd:complexType&gt;
      &lt;/xsd:element&gt;
      &lt;xsd:element name="AddResponse"&gt;
      	&lt;xsd:complexType&gt;
      		&lt;xsd:sequence&gt;

      			&lt;xsd:element name="out" type="xsd:int"&gt;&lt;/xsd:element&gt;
      		&lt;/xsd:sequence&gt;
      	&lt;/xsd:complexType&gt;
      &lt;/xsd:element&gt;
    &lt;/xsd:schema&gt;
  &lt;/wsdl:types&gt;
   &lt;wsdl:message name="AddRequest"&gt;   	&lt;wsdl:part name="a" type="xsd:int"&gt;&lt;/wsdl:part&gt;
  	&lt;wsdl:part name="b" type="xsd:int"&gt;&lt;/wsdl:part&gt;
  &lt;/wsdl:message&gt;
  &lt;wsdl:message name="AddResponse"&gt;
  	&lt;wsdl:part name="c" type="xsd:int"&gt;&lt;/wsdl:part&gt;
  &lt;/wsdl:message&gt;
  &lt;wsdl:portType name="TestSoap"&gt;     &lt;wsdl:operation name="Add"&gt;
    	&lt;wsdl:input message="tns:AddRequest"&gt;&lt;/wsdl:input&gt;
    	&lt;wsdl:output message="tns:AddResponse"&gt;&lt;/wsdl:output&gt;
    &lt;/wsdl:operation&gt;
  &lt;/wsdl:portType&gt;
  &lt;wsdl:binding name="soapSOAP" type="tns:TestSoap"&gt;
  	&lt;soap:binding style="document"
  		transport="http://schemas.xmlsoap.org/soap/http" /&gt;
  	&lt;wsdl:operation name="Add"&gt;
  		&lt;soap:operation soapAction="http://localhost/interface/Add" /&gt;
  		&lt;wsdl:input&gt;
  			&lt;soap:body use="literal"
  				namespace="http://localhost/interface/" /&gt;
  		&lt;/wsdl:input&gt;
  		&lt;wsdl:output&gt;
  			&lt;soap:body use="literal"
  				namespace="http://localhost/interface/" /&gt;
  		&lt;/wsdl:output&gt;
  	&lt;/wsdl:operation&gt;
  &lt;/wsdl:binding&gt;
  &lt;wsdl:service name="TestSoap"&gt;
    &lt;wsdl:port binding="tns:soapSOAP" name="soapSOAP"&gt;
      &lt;soap:address location="http://localhost/interface/myservice.php"/&gt;
    &lt;/wsdl:port&gt;
  &lt;/wsdl:service&gt;
&lt;/wsdl:definitions&gt;</pre>
<pre>客户端调用</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.waimv.com/php/198/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
