我尝试在node.js中使用this和this WSDL与node-soap定义的SOAP WebService。
现在,关于singlewsdl规范的这一部分:
<xs:element minOccurs="0" name="AuthToken" nillable="true" type="xs:string"/>
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="NIP" nillable="true" type="q1:ArrayOfstring"/>
...
<xs:element minOccurs="0" name="DateFrom" nillable="true" type="xs:dateTime"/>
使用AuthToken或DateFrom参数查询服务没有问题:
var args = {
AuthToken: 'yyyy',
DateFrom: (ISOstringed date variable)
};
但我不知道&#34; ArrayOf ...&#34;的语法是怎样的参数应该是这样的。我试过了:
NIP: 'xxxx'
NIP: {
element: 'xxxx'
}
NIP: {
string: 'xxxx'
}
但只有第一个产生反序列化错误,前者只产生超时(与随机参数相同)。
任何帮助都将不胜感激。
答案 0 :(得分:3)
SoapUI让我明白了这一点:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<soapenv:Header/>
<soapenv:Body>
<tem:GetData>
<tem:AuthToken>xxxx</tem:AuthToken>
<tem:NIP>
<arr:string>yyyy</arr:string>
<arr:string>zzzz</arr:string>
</tem:NIP>
</tem:GetData>
</soapenv:Body>
</soapenv:Envelope>
是所需的XML请求格式,因此我尽可能接近它:
var args = {
attributes: {
'xmlns:arr': 'http://schemas.microsoft.com/2003/10/Serialization/Arrays'
},
'tns:AuthToken': 'xxxx',
'tns:NIP': {
'arr:string': ['yyyy','zzzz']
},
};
作为评论的一句话 - node-soap默认将http://tempuri.org/命名空间定义为'tns',所以我跳过了SoapUI建议的'tem'定义。