Need help on developing WEB SERVICE for uploading dataon PDA/PALM

  • Thread starter Thread starter Ahsan Ullah
  • Start date Start date
A

Ahsan Ullah

Hi,Everybody.I need to get some idea regarding the development of code for PDA.I am using C# in VisualStudio2003.
i will be greatful to you if you let me know how can i develop it.I know that VS2003 provides support for mobile applications.
 
Your request is not 100% clear to me since part of it seems to be in the
subject line and the rest in the message.

If you want to upload data on your PDA to a web service, you need two
things:

1. A web service on a web server to accept the data and store it on the
server and

2. Some code in an application on the PDA which accesses this web service
and uploads the data.

One way to do this is write a webservice in Visual Studio, either 2003 or
2005 that takes a dataset and writes it to an XML file on the server. Then
write a program for your Pocket PC that references this web service and
takes whatever data you have, puts it into a dataset and then sends it to
the server using the web service.
 
Back
Top