Need to build a ASP.NET web page to check the health of a web application
-
Hi, I need to build a ASP.net web page which can be added to any web application to show the helath of the web application. The Items that it need to check: 1. Is the DB up and running - The DB connection string should be automatically picked from web.config 2. Any web services referenced by that applications are up and running. 3. Check for any DB jobs for that User in DB and get the last run time. etc... Any help in this direction is highly appreciated. Thanking you advance, Neha
-
Hi, I need to build a ASP.net web page which can be added to any web application to show the helath of the web application. The Items that it need to check: 1. Is the DB up and running - The DB connection string should be automatically picked from web.config 2. Any web services referenced by that applications are up and running. 3. Check for any DB jobs for that User in DB and get the last run time. etc... Any help in this direction is highly appreciated. Thanking you advance, Neha
Hi Neha, Go through the below link that has the video to implement Health Monitoring in ASP.NET application http://www.asp.net/(S(ywiyuluxr3qb2dfva1z5lgeg))/learn/videos/video-195.aspx[^] You could also look out for the log4net component.
Regards, Vipul Mehta
-
Hi Neha, Go through the below link that has the video to implement Health Monitoring in ASP.NET application http://www.asp.net/(S(ywiyuluxr3qb2dfva1z5lgeg))/learn/videos/video-195.aspx[^] You could also look out for the log4net component.
Regards, Vipul Mehta
Thanks Vipul for your response. Actually I am more interested on the generic stuff. The application which I am working on 1) Should query all the WebSites configured in the IIS of the system where the proposed application is deployed, 2) Read the individual web.config files of thoses applications and get the Connection Strings, Web Refrences etc. 3) Ping the DB / Web Services and show the responses. Thanks, Neha