我有以下 XML,我想在其中发布记录ProductNumber,Quantity,Price。
<?xml version="1.0" encoding="utf-8"?>
<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>
<QueryPrices xmlns="xyz">
<strSessionKey>string</strSessionKey>
<nDiscountID>int</nDiscountID>
<objOrderItems>
<OrderItem>
<ProductNumber>int</ProductNumber>
<Quantity>int</Quantity>
<Price>float</Price>
</OrderItem>
<OrderItem>
<ProductNumber>int</ProductNumber>
<Quantity>int</Quantity>
<Price>float</Price>
</OrderItem>
</objOrderItems>
</QueryPrices>
</soap:Body>
</soap:Envelope>