all groups > dotnet xml > june 2004 >
You're in the

dotnet xml

group:

Passing XML to webservice


Passing XML to webservice elmerblues71 NO[at]SPAM hotmail.com
6/30/2004 8:06:38 AM
dotnet xml:
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.

Re: Passing XML to webservice Chris Lovett
6/30/2004 10:04:31 PM
Add another argument:

public string PurchaseOrder(XmlElement orderHeader, XmlElement orderDetails)
{
....
}


[quoted text, click to view]

AddThis Social Bookmark Button