Let me give everyone a background before I move on to my problem. My company hosts a site for many clients, my company also signs a contract with another company. Therefore, when we first created a site with all the information for our customers, we transfer this information to another company with which we have a contract, and three of us have the same data. The problem is that the site has already been launched, our customers will change some data, and when they do, we can update our contract company. The method of transferring data from a contract company is to use a web service (httppost, xml data). Now my question is, what is the best way to write a program that sends updated data to a contract company every time our customers change some data.
1) Write a Windows service with a timer inside my code, where every 30 minutes or so it connects to the database and finds all the changes and sends them to the contract company 2) Write the same code as # 1 (without a timer in it), but this time make it a simple program and let Windows Scheduler wake it up every 30 minutes 3) Any other suggestion you may have
Technologies available to me are VS 2008, SQLServer 2005
Deene
source share