我正在使用由 Visual Studio 2010 自动生成的 WSDL 文档(即,来自您在 Visual Studio 中创建新的 Web 服务应用程序时创建的“HelloWorld”应用程序。)但我需要在 PHP 中开发 Web 服务,所以我将这个 WSDL 文档与 PHP SoapServer 一起使用。我将在此处复制 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://tempuri.org/"
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://tempuri.org/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
<s:element name="HelloWorld">
<s:complexType />
</s:element>
<s:element name="HelloWorldResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
</wsdl:types>
<wsdl:message name="HelloWorldSoapIn">
<wsdl:part name="parameters" element="tns:HelloWorld" />
</wsdl:message>
<wsdl:message name="HelloWorldSoapOut">
<wsdl:part name="parameters" element="tns:HelloWorldResponse" />
</wsdl:message>
<wsdl:portType name="Service1Soap">
<wsdl:operation name="HelloWorld">
<wsdl:input message="tns:HelloWorldSoapIn" />
<wsdl:output message="tns:HelloWorldSoapOut" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="Service1Soap" type="tns:Service1Soap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="HelloWorld">
<soap:operation soapAction="http://tempuri.org/HelloWorld" 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="Service1Soap12" type="tns:Service1Soap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="HelloWorld">
<soap12:operation soapAction="http://tempuri.org/HelloWorld" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="Service1">
<wsdl:port name="Service1Soap" binding="tns:Service1Soap">
<soap:address location="helloworld_server.php" />
</wsdl:port>
<wsdl:port name="Service1Soap12" binding="tns:Service1Soap12">
<soap12:address location="helloworld_server.php" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
我的 PHP SoapServer 代码如下所示:
function HelloWorld()
{
return "Hello world!";
}
$server = new SoapServer( 'helloworld.wsdl' );
$server->addFunction('HelloWorld');
try {
$server->handle();
}
catch (Exception $e) {
$server->fault('Sender', $e->getMessage());
}
当我尝试使用 .Net 客户端调用此肥皂服务时,我得到一个空字符串返回。有谁知道这个简单的例子出了什么问题?
更新:
这似乎是从 PHP 服务器与 .Net 客户端通信的问题。我已经使用 PHP 客户端进行了测试,并且在 PHP 客户端中收到了服务器返回的消息。但由于某种原因,.Net 客户端返回了一个空字符串。对于 .Net 客户端,我创建了一个简单的 WinForms 应用程序,添加了对 php soap 服务器的 Web 引用。Web 参考被正确添加并显示 API。我使用以下点击句柄在表单上放置了一个按钮:
private void button1_Click(object sender, EventArgs e)
{
WebReference.Service1 srv = new WebReference.Service1();
string result = srv.HelloWorld();
MessageBox.Show(result);
}