transmitting xml data advice

dashley

Well-known member
Joined
May 27, 2005
Messages
59
Location
Tennessee
Programming Experience
10+
I have an app Im working on that stores daily data in a dated xml file (ex. 07222005.xml. want to transfer the contents of the file (preferably) or the entire file to our main website over a wifi (wireless) connection. I have the app, I have a wifi connection but I dont have the slightest clue on how I should pass the data. I'm all for using a webservice etc.. Can sombody point me in the right direction?

Thanks



Dan
 
It really doesn't matter kind of connection ... all you need is to send/copy/move/upload the file. Means couple ways are in play i.e. you can upload file via FTP, send file as an attachment inside an eMail, using copy method of File class "System.IO.File.Copy(SourcePath, DestinationPath)" etc.

Regards ;)
 
Back
Top