Hi
I need to post xml data to a url, I have have created an xml file using an
xml text writer as below but would rather a faster method that does not
involve writing the file to disk but using it from memory instead. Could
anyone suggest a method that is similar in coding (so as not to require too
many code changes).
Dim writer As New System.Xml.XmlT extWriter("c:\t emp\TestXml.xml ",
System.Text.Enc oding.UTF8)
..Formatting = Xml.Formatting. Indented
..Indentation = 1
..IndentChar = ControlChars.Ta b
..WriteStartDoc ument()
..WriteStartEle ment("........
Thanks
B
I need to post xml data to a url, I have have created an xml file using an
xml text writer as below but would rather a faster method that does not
involve writing the file to disk but using it from memory instead. Could
anyone suggest a method that is similar in coding (so as not to require too
many code changes).
Dim writer As New System.Xml.XmlT extWriter("c:\t emp\TestXml.xml ",
System.Text.Enc oding.UTF8)
..Formatting = Xml.Formatting. Indented
..Indentation = 1
..IndentChar = ControlChars.Ta b
..WriteStartDoc ument()
..WriteStartEle ment("........
Thanks
B
Comment