PHP SOAP服务器是否通过HTTP POST处理请求?

时间:2012-03-30 01:19:42

标签: php soap wsdl

我正在尝试使用php设置一个Web服务。我已经成功地使用PHP SOAP扩展创建了一个。但是,我希望通过简单的HTTP POST和HTTP GET调用来提供服务。为了简单起见,我试图将http://www.w3schools.com/webservices/ws_example.asp的示例翻译为在php环境中工作。

服务器localhost / tempconvert.php如下所示:

<?php
    function CelsiusToFahrenheit($celcius){
        return (((($celcius) * 9) / 5) + 32);
    }

    function FahrenheitToCelsius($fahrenheit){
        return (((($fahrenheit) - 32) / 9) * 5);
    }

    // turn off the wsdl cache
    ini_set("soap.wsdl_cache_enabled", "0");

    $server = new SoapServer("tempconvert.wsdl");

    $server->addFunction("CelsiusToFahrenheit");
    $server->addFunction("FahrenheitToCelsius");

    $server->handle();
?>

,客户端localhost / tempclient.php如下所示:

<?php
    // turn off the WSDL cache
    ini_set("soap.wsdl_cache_enabled", "0");

    $client = new SoapClient("tempconvert.wsdl");

    $cels = 32;
    $fahr = $client->CelsiusToFahrenheit($cels);

    echo "$cels in fahr is: $fahr";
?>

最后wsdl文件localhost / tempconvert.wsdl看起来像:

<?xml version="1.0" encoding="utf-8"?>
    <wsdl:definitions  
        xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
        xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" 
        xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
        xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" 
        xmlns:tns="http://localhost/tempconvert.wdsl" 
        xmlns:s="http://www.w3.org/2001/XMLSchema" 
        xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" 
        xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
        targetNamespace="http://localhost/tempconvert.wdsl" 
        xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
      <wsdl:types>
        <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
          <s:element name="FahrenheitToCelsius">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="Fahrenheit" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="FahrenheitToCelsiusResponse">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="FahrenheitToCelsiusResult" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="CelsiusToFahrenheit">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="Celsius" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="CelsiusToFahrenheitResponse">
            <s:complexType>
              <s:sequence>
                <s:element minOccurs="0" maxOccurs="1" name="CelsiusToFahrenheitResult" type="s:string" />
              </s:sequence>
            </s:complexType>
          </s:element>
          <s:element name="string" nillable="true" type="s:string" />
        </s:schema>
      </wsdl:types>
      <wsdl:message name="FahrenheitToCelsiusSoapIn">
        <wsdl:part name="parameters" element="tns:FahrenheitToCelsius" />
      </wsdl:message>
      <wsdl:message name="FahrenheitToCelsiusSoapOut">
        <wsdl:part name="parameters" element="tns:FahrenheitToCelsiusResponse" />
      </wsdl:message>
      <wsdl:message name="CelsiusToFahrenheitSoapIn">
        <wsdl:part name="parameters" element="tns:CelsiusToFahrenheit" />
      </wsdl:message>
      <wsdl:message name="CelsiusToFahrenheitSoapOut">
        <wsdl:part name="parameters" element="tns:CelsiusToFahrenheitResponse" />
      </wsdl:message>
      <wsdl:message name="FahrenheitToCelsiusHttpPostIn">
        <wsdl:part name="Fahrenheit" type="s:string" />
      </wsdl:message>
      <wsdl:message name="FahrenheitToCelsiusHttpPostOut">
        <wsdl:part name="Body" element="tns:string" />
      </wsdl:message>
      <wsdl:message name="CelsiusToFahrenheitHttpPostIn">
        <wsdl:part name="Celsius" type="s:string" />
      </wsdl:message>
      <wsdl:message name="CelsiusToFahrenheitHttpPostOut">
        <wsdl:part name="Body" element="tns:string" />
      </wsdl:message>
      <wsdl:portType name="TempConvertSoap">
        <wsdl:operation name="FahrenheitToCelsius">
          <wsdl:input message="tns:FahrenheitToCelsiusSoapIn" />
          <wsdl:output message="tns:FahrenheitToCelsiusSoapOut" />
        </wsdl:operation>
        <wsdl:operation name="CelsiusToFahrenheit">
          <wsdl:input message="tns:CelsiusToFahrenheitSoapIn" />
          <wsdl:output message="tns:CelsiusToFahrenheitSoapOut" />
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:portType name="TempConvertHttpPost">
        <wsdl:operation name="FahrenheitToCelsius">
          <wsdl:input message="tns:FahrenheitToCelsiusHttpPostIn" />
          <wsdl:output message="tns:FahrenheitToCelsiusHttpPostOut" />
        </wsdl:operation>
        <wsdl:operation name="CelsiusToFahrenheit">
          <wsdl:input message="tns:CelsiusToFahrenheitHttpPostIn" />
          <wsdl:output message="tns:CelsiusToFahrenheitHttpPostOut" />
        </wsdl:operation>
      </wsdl:portType>
      <wsdl:binding name="TempConvertSoap" type="tns:TempConvertSoap">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
        <wsdl:operation name="FahrenheitToCelsius">
          <soap:operation soapAction="http://tempuri.org/FahrenheitToCelsius" style="document" />
          <wsdl:input>
            <soap:body use="literal" />
          </wsdl:input>
          <wsdl:output>
            <soap:body use="literal" />
          </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="CelsiusToFahrenheit">
          <soap:operation soapAction="http://tempuri.org/CelsiusToFahrenheit" style="document" />
          <wsdl:input>
            <soap:body use="literal" />
          </wsdl:input>
          <wsdl:output>
            <soap:body use="literal" />
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:binding name="TempConvertSoap12" type="tns:TempConvertSoap">
        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
        <wsdl:operation name="FahrenheitToCelsius">
          <soap12:operation soapAction="http://tempuri.org/FahrenheitToCelsius" style="document" />
          <wsdl:input>
            <soap12:body use="literal" />
          </wsdl:input>
          <wsdl:output>
            <soap12:body use="literal" />
          </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="CelsiusToFahrenheit">
          <soap12:operation soapAction="http://tempuri.org/CelsiusToFahrenheit" style="document" />
          <wsdl:input>
            <soap12:body use="literal" />
          </wsdl:input>
          <wsdl:output>
            <soap12:body use="literal" />
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:binding name="TempConvertHttpPost" type="tns:TempConvertHttpPost">
        <http:binding verb="POST" />
        <wsdl:operation name="FahrenheitToCelsius">
          <http:operation location="/FahrenheitToCelsius" />
          <wsdl:input>
            <mime:content type="application/x-www-form-urlencoded" />
          </wsdl:input>
          <wsdl:output>
            <mime:mimeXml part="Body" />
          </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="CelsiusToFahrenheit">
          <http:operation location="/CelsiusToFahrenheit" />
          <wsdl:input>
            <mime:content type="application/x-www-form-urlencoded" />
          </wsdl:input>
          <wsdl:output>
            <mime:mimeXml part="Body" />
          </wsdl:output>
        </wsdl:operation>
      </wsdl:binding>
      <wsdl:service name="TempConvert">
        <wsdl:port name="TempConvertSoap" binding="tns:TempConvertSoap">
          <soap:address location="http://localhost/tempconvert.php" />
        </wsdl:port>
        <wsdl:port name="TempConvertSoap12" binding="tns:TempConvertSoap12">
          <soap12:address location="http://localhost/tempconvert.php" />
        </wsdl:port>
        <wsdl:port name="TempConvertHttpPost" binding="tns:TempConvertHttpPost">
          <http:address location="http://localhost/tempconvert.php" />
        </wsdl:port>
      </wsdl:service>
    </wsdl:definitions>

使用客户端工作正常并输出相关结果。使用localhost / tempconvert.php调用服务器?WSDL输出wsdl内容。

但是,使用有效负载Celsius = 100的HTTP POST端口调用服务器localhost / tempcovert.php不起作用并提供HTTP错误500响应?

SOAP扩展功能不应该解决这个问题吗?

...或者我必须自己在服务器文件中添加功能吗? (比如使用:if($ _POST)...)

0 个答案:

没有答案