thanks for the help
the following works:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Try
Dim doc As System.Xml.XmlDocument = New XmlDocument()
doc.Load(Request.InputStream)
Dim singlenode As XmlNode =
doc.SelectSingleNode("nodename1")
Dim strnodevalue As String = singlenode.InnerText
Dim nodeatt As XmlAttribute =
singlenode.Attributes("attribute1")
Dim attributevalue As String = nodeatt.InnerXml
'do something
Dim doc2 As XmlDocument = New XmlDocument()
doc2.Load(Server.MapPath("test.xml"))
doc2.Save(Response.OutputStream)
End Sub
swl8@yahoo.com (swl) wrote in message news:<eaadd143.0310140918.466a5456@posting.google. com>...[color=blue]
> I was thinking about using the following in the pageload
>
> dim doc as System.Xml.XmlDocument = new XmlDocument()
> doc.Load(Request.InputStream)
>
> Once I consume the xml I want to send xml back using http post.
>
>
swl8@yahoo.com (swl) wrote in message news:<eaadd143.0310140529.702c9960@posting.google. com>...[color=green]
> > How do I consume xml and send back an xml response not using SOAP in
> > an asp.net aspx page using vb.net?[/color][/color]