I want to ask about webservices.
Consider a scenario :
I entry my data in a vfp desktop apps. When I hit 'save', the apps saved my data in local database, and send it as xml to a webservice ( a php file ) in remote location. The web service then insert my data to a vfp database in the remote location. For example, as soon as I hit 'save', I realize that I've made a mistake. I change my entry and hit 'save' once again. The data will send again via webservice to update the data in the remote location.
The question is :
How do I guarantee that the second update will be inserted in the remote location after the first insert? I mean does the sequence of the operation will guarantee the same sequence of operation in the web server?
Many thanks.