我正在研究Web服务的肥皂和休息。 测试我的Web服务时,我按照下面的示例传递了一个重复的字段ProductId,并顺利通过了。
我问这是正常现象还是错误?
任何帮助,非常感谢。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:v1="http://nameSpace/">
<soapenv:Header/>
<soapenv:Body>
<getProductService>
<arg0>
<ProductDate>2016-04-01</ProductDate>
<ProductId>prod1</ProductId>
##<ProductId>prod1</ProductId>##
</arg0>
</getProductService>
</soapenv:Body>
</soapenv:Envelope>