Where can I find information on this

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I need to take orders online and convert each order object to and xml file.
The file will then be encrypted and periodically, the files will be
downloaded by a desktop application for processing.

I've seen an article on this a while ago but can't seem to find it now.
Anyone have any information on how to do this?

Thanks
 
Hello Chris,

To do what?
To serialize - use NetDataContractSerializer class
To encript - use DESCryptoServiceProvider see VB sample there http://support.microsoft.com/kb/301070

---
WBR, Michael Nemtsev [.NET/C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo

C> Hi,
C> I need to take orders online and convert each order object to and xml
C> file.
C> The file will then be encrypted and periodically, the files will be
C> downloaded by a desktop application for processing.
C> I've seen an article on this a while ago but can't seem to find it
C> now. Anyone have any information on how to do this?
C>
C> Thanks
C>
 
Back
Top