- Case Study 1: Web Monitoring
Problem: You are running your web site at your ISP, and you want to make sure it is up and running 24/7.
Solution: By running a schedule task every 30 mim with WebCheck, if the server is down or got connection problem. You will get an notification email instantly.
- Case Study 2: Data Downloader
Problem: You are an IT consultant, you need to get all the daily transcation data files every morning at 2:00 AM from your client. It is available in file format and is available on their web server.
Solution: By running a schedule task with WebCheck to download the files, and it is ready by the time you wake up.
- Case Study 3: Pre-cache web application for performance
Problem: Your Intranet ASP.NET/PHP application has an executive report to show the corporate sales, but everytime to read the report
it takes several minutes to generate which is not acceptable. The executives want to see the MOST
UPDATED (not necessary real time) numbers every hour with lightning speed.
So, your developer suggested to use Cache objects and it does solve the speed problem. But how do you
update your Cache objects every hour with the latest data from database?
Solution: By running WebCheck with a schedule task to hit your ASPX/PHP page, the report generating is done on the background.
When the cache object is updated, your page is loaded up as a matter of seconds.
- Case Study 4: Import Data from LDAP (Active Directory) to web application
Problem: Media Road product's StaffView Pro is a professional Organization Chart/Employee Directory Software, every night the Employee Directory has to be updated from Active Directory.
Solution: By running a schedule with WebCheck at 12:00 AM at night, WebCheck hits the specific URL on the web application to trigger the data import.