Click here to Skip to main content
15,913,722 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In one asp.net application i am using webservices data stored as xml in local system. whenever i want to get updated data i am manually updating it or using timer to update it. is there any way to know that the webservice is updated .
the webservice should automatically inform the client that there is an update in webservice
Posted
Updated 31-Jan-12 18:55pm
v2

1 solution

No, a webservice does not have a mechanism to call it's clients. You could add a webservice to your asp.net application and have your other webservice call that to notify you, if you control both sites. Otherwise, no.
 
Share this answer
 
Comments
satishmachineni 1-Feb-12 1:05am    
i cant get it , how to notify
Christian Graus 1-Feb-12 1:16am    
ASP.NET site A calls a webservice hosted on site B. The only way site B can tell site A to call the webservice, is if ASP.NET site A has a webservice which site B can call to say 'my data has updated'. You need to add code on the side that hosts the webservice you are calling, to send you a notification.
satishmachineni 1-Feb-12 1:50am    
thank u ,excellent explanation

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900