Pocket PC XML to webserver.
Id like to send an xml file from my pocket pc to a local webserver.
When the users presses a button in Vb.net or just opens the webpage of the website it should upload the XMl file to the right site without any user intervention.
the webserver should be able to process the xml file and insert any updates into its database.Whats the best way to do this ?.
there's no need for any security just want the entire xml file transferred.
thx.
Re: Pocket PC XML to webserver.
sounds like you need to use a webservice, where you can call it on the device and pass data objects to it... the data is transformed into an xml and sent over the web... maybe this is what you need, that instead of sending a file, read the data from the file in objects and send them
however it is possible to transfer files this way too http://www.codeproject.com/cs/webser...ia_webserv.asp
Re: Pocket PC XML to webserver.
Thx This is working out pretty nicely now.