Web Services
-
Hello, Please am in need to how to implement a simple webservice to transfer the database from a client computer to a central computer.
Nana
You can use Web service by cread Webservice (If you dont have any webservise in your locahost) Then in your project you must add WebReferen, choise Brown to your Webservice to this project; You can cornect to difirent server and use server's Webservise for using;
//Using Webservice as using Class; (WebService web = new WebService(); Label1.Text=web.HelloWorld()//----> this is a function you get from WebService;)
Please test again and reply if can't -
Hello, Please am in need to how to implement a simple webservice to transfer the database from a client computer to a central computer.
Nana
Really easy Make a Web service with a method that accepts a dataset and any other parameter that you need like client id... The dataset should contain the whole datatabase or any info you need (i hope you are not trying to send to many records) Once you have the dataset in the server side, you can just save those changes in the database in the server as you would with any other dataset Im asumming you know how to make a webservice and i hope you do :-)
Alexei Rodriguez