I'd like to send invoice information from client program to web service and
then transfer it to xml-file there. The best way to do this could be writing
all the information in xml-format but to send it as a string. But then how
can I create an xml-file out of this string easily? xmlreader reads only
files. Any ideas how to handle this kind of problems?
Migi
Jared - 13 Sep 2004 02:16 GMT
You will still need to provide the validation on your own.
Dim xDocument As New System.Xml.XmlDocument
xDocument.LoadXml("<root><child>Child Node InnerText</child></root>")
> I'd like to send invoice information from client program to web service
> and then transfer it to xml-file there. The best way to do this could be
[quoted text clipped - 3 lines]
>
> Migi