soap给出Uncaught SoapFault异常:[HTTP]错误获取http标头

时间:2012-09-07 10:44:18

标签: php soap wsdl

我正在尝试借助PHP和Web服务构建一个Web应用程序。我想通过Web服务使用PHP的PDO连接到数据库。我已经构建了服务器文件,客户端文件和wsdl文件。通过各种测试,我发现我的wsdl文件存在一些问题,因为当我在服务器和客户端文件中运行其他wsdl文件的其他函数时,它们正常工作。我在localhost上工作,所有文件都位于wamp / www / myApp / api /目录下(Apache 2.2.8,PHP 5.2.6)。我发布了wsdl文件供您参考。请告诉我出错的地方并指导我纠正错误。感谢。

wsdl文件:

    <?xml version="1.0" encoding="utf-8"?>
    <definitions name="MyService" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://My.Local.IP/myApp/api/my.wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2000/10/XMLSchema">

<message name="LoginRequest">
    <part name="dns" type="xsd:string"/>
    <part name="user" type="xsd:string"/>
    <part name="password" type="xsd:string"/>
</message>
<message name="LoginResponse">
    <part name="result" type="xsd:string"/>
</message>

<portType name="Fetch_PortType">
    <operation name="Login">
        <input message="tns:LoginRequest"/>
        <output message="tns:LoginResponse"/>
    </operation>
</portType>

<binding name="MyService_Binding" type="tns:Fetch_PortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="Login">
        <soap:operation soapAction="http://My.Local.IP/myApp/api/Login"/>
        <input name="Login">
            <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded"/>
        </input>
        <output name="Login">
            <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded"/>
        </output>
    </operation>
</binding>

<service name="My_Service">
    <documentation>WSDL File MyService</documentation>
    <port name="Fetch_PortType" binding="tns:MyService_Binding">
        <soap:address location="http://My.Local.IP/myApp/api/server.php"/>
    </port>
</service>
    </definitions>

2 个答案:

答案 0 :(得分:0)

可能是服务器类中的PHP错误或实现Login方法的类/函数。 直接访问文件会发生什么?请检查您的错误日志。

答案 1 :(得分:-1)

我自己从未写过WSDL。相反,您可以编写镜像.NET Web服务并使用自动生成的WSDL(通过MS Visual Studio)。