Reputation: 464
Here is the scenario:
Problem is: during step 3, Client maybe save product list unsuccessfully.
So, is there any good way to let WCF Server know if the Client has downloaded and saved the product list successfully.
Upvotes: 0
Views: 294
Reputation: 364389
No server doesn't know about the final state of the action performed by the client. For server the operation ends when it returns response to the transport channel. It is up to you as client's developer to handle any exception and call the service again if needed.
Btw. did you check MS Sync Framework? It does exactly what you describes and it supports WCF.
Upvotes: 2