我有这个WDSL
<xsd:element name="elementname">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="1" ref="miref"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
现在我必须通过nuSoap创建它,但无论如何我都找不到在complexType上省略de type和name并在一个元素中设置complexType。
因此,如果我想创建一个元素,我会使用这段代码:
$server->wsdl->AddElement(
array('name' => 'example1', 'type' => ''
)
);
如果我想创建另一个complexType:
$server->wsdl->addComplexType(
'example2',
'complexType',
'struct',
'all',
'',
array(
'id_user' => array('type' => '', 'maxOccurs' => '1', 'minOccurs' => '1'),
)
);
所以这是我的问题: 1]我需要将complexType(example2)放在另一个元素(example1)中。 2] complexType不应该在标签内有他的名字,但是函数addComplexType()和addElement(),如果我不给它们Type和Name,似乎不起作用。此外,在文档中还表明它需要:必须包含名称和类型的属性。
答案 0 :(得分:0)
我不熟悉nuSoap,但由于它基于原生PHP SoapServer,我认为它类似。
基本上在使用PHP方法时,SoapServer将根据附加的XML Schema(XSD)解析返回的对象。
无论何时使用complexType,都应该有相应的PHP类。 StdClass也可以工作,但定义结构显然更好。
$response = new stdClass();
$response->sequenceElement = 'value';
return $response;
显然,sequenceElement名称必须与您引用的XSD类匹配(ref =“miref”)。
此外,如果您向$ response添加其他数据,SoapServer将忽略它,因为它未在XSD中定义。