我正在使用在VB中提供其示例的API。它要求在XML中传递数据集。
XML示例如下:
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetItemsSResponse xmlns="http://ws.example.com">
<GetItemSResult>
<xsd:schema>schema</xsd:schema>xml
</GetItemResult>
</GetItemsSResponse>
</soap:Body>
</soap:Envelope>
他们应如何提交数据集的示例是:
Item List
("ItemID") = "abcde" *
("ItemID") = "fghig"
("ItemID") = "klmno"
("ItemID") = "pgrst"
我尝试以Json身份提交,但该错误表明数据格式存在问题。
有什么想法吗?