-
how to save as xml
Hi
I'm coding a server/client application in which i'll be getting an xml file from the server. However when i do a receive on the client side, it'll be stored in a buffer rite so my problem is how do i convert it back to an xml file. I need it to be in an xml file since at the client i'm doing xml parsing using dom & stuff. I'm new to vb networking so any help wud be greatly appreciated.
thanks
-
Re: how to save as xml
I'm a bit confused - you retrieve an entire XML file, then parse it for data, then need to send it back to the server, re-written?
I suggest you google for "Serialization XML," serialization is basically taking a data Structure or Class and giving it to the .NET serialization object and having it output it to a file stream in XML format - very useful for configuration management.
-
Re: how to save as xml
thnxs for replying but i already solved the problem
-
Re: how to save as xml