我正在尝试用PHP构建一个soap服务。我用于Web服务的WSDL是由Visual Studio 2010自动生成的(我只使用Visual Studio创建WSDL,实际的服务器是使用SoapServer在PHP中构建的)。正在处理对soap服务的请求,但是当我尝试返回一个字符串数组时,客户端没有得到任何结果。以下是WSDL的相关部分:
<s:element name="getGroups">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="code" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="getGroupsResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="getGroupsResult" type="tns:ArrayOfString" />
</s:sequence>
</s:complexType>
</s:element>
<s:complexType name="ArrayOfString">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" />
</s:sequence>
</s:complexType>
.
.
<wsdl:message name="getGroupsSoapIn">
<wsdl:part name="parameters" element="tns:getGroups" />
</wsdl:message>
<wsdl:message name="getGroupsSoapOut">
<wsdl:part name="parameters" element="tns:getGroupsResponse" />
</wsdl:message>
.
.
<wsdl:operation name="getGroups">
<wsdl:input message="tns:getGroupsSoapIn" />
<wsdl:output message="tns:getGroupsSoapOut" />
</wsdl:operation>
PHP服务器代码如下:
function getGroups($args)
{
return array('ArrayOfString' => array('hello world'));
}
$server = new SoapServer( 'admin.wsdl' );
$server->addFunction('getGroups');
try {
$server->handle();
}
catch (Exception $e) {
$server->fault('Sender', $e->getMessage());
}
我也尝试从PHP getGroups 函数返回 array('hello world'),但这也无效。有人可以帮我纠正PHP代码,以返回一个符合我的WSDL定义的字符串数组。
答案 0 :(得分:1)
它适用于这种complexType:
<s:complexType name="ArrayOfString2">
<complexContent>
<restriction base="SOAP-ENC:Array">
<attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="string[]"/>
</restriction>
</complexContent>
</s:complexType>
.
.
<wsdl:message name="getGroupsSoapOut">
<wsdl:part name="parameters" type="tns:ArrayOfString2" />
</wsdl:message>
在server.php中,添加行有时非常重要:
ini_set("soap.wsdl_cache_enabled", "0");
或结果可能无法预测。