PHP与VB数据集等效吗?

时间:2018-08-29 20:12:35

标签: php xml vb.net dataset

我正在使用在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身份提交,但该错误表明数据格式存在问题。

有什么想法吗?

0 个答案:

没有答案