Click here to Skip to main content
15,891,529 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I've managed to create a web application to insert some records to my server, and read the records on a windows forms application on the other end.

I would like to create a notification for my windows forms everytime I new record has been inserted from the web application.

How am I going to deal with it?

I am having problem trying out the SqlDependency since I used 2 application for manipulating records.

Thanks
Posted
Comments
choudhary.sumit 5-Mar-13 6:00am    
what you have tried so far?

1 solution

Best practice for this kind of operations is publisher-subscriber pattern. In this situation basically you will raise an event whenever the insert is successful and all the subscriber will be notified whenever the event occurs. You can read about this more at Publish/Subscribe[^]
 
Share this answer
 

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