sending XML message to webservice problem

C

Chris

I have a customer who wants to send us a XML message like this:

<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<PurchaseOrder xmlns="http://tempuri.org/">
<OrderHeader>
<PONumber>10464</PONumber>
</OrderHeader>
<OrderDetails>
<ItemNumber>63434</ItemNumber>
<NumberOfItems>6</NumberOfItems>
</OrderDetails>
</PurchaseOrder>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

This message can't be changed. So I build a webservice like this:

[WebMethod]
[SoapDocumentMethod(ParameterStyle=SoapParameterStyle.Bare)]
public string PurchaseOrder(XmlNode XmlPurchaseOrder)
{
//do something nice with XmlPurchaseOrder
}

When I am looking at the contents of XmlPurchaseOrder, I only see the
elements of the first node, OrderHeader. No Orderdetails. Basically, I
would retrieve in my function the whole XML message between the
PurchaseOrder tags, not only the first node. I tried several other
function calls, but I always ends up with the information of the first
node.

Anyone a clue?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top