Send XML document to a webservice
Hi all, in my application I am trying to enter shipping information in a ASP.NET text fields. I want to make an XML document based on the values entered in the text fields. For example: PurchaseOrder#,Name,City,State etc. I want to build an XML document like
<PurchaseOrder#>UserInputfromHTML<PurchaseOrder# >
<Name>UserInputFromHTML</Name>etc
and send this XML with shipping information to a webservice using SOAP.
I have to use SOAP because of my client requirements.
I want to know how to do this.
Thanks.
|