Sanmukh Lodha
Sanmukh Lodha

Reputation: 11

Monitor urls using c#

I am developing asp.net website for url monitoring. I looked around for open source tools and none of them provide restful APIs so that they can be called from my application. Are there any open source packages that I can directly use?

Thanks.

Upvotes: 0

Views: 3649

Answers (2)

user1276005
user1276005

Reputation: 43

The following posts will help your to solve you problem:

http://aspalliance.com/237_How_to_Check_URLs_Using_NET http://obout.com/sitemonitoring/sitemonitoring.aspx

Upvotes: 0

bateloche
bateloche

Reputation: 709

You want to check the content of the URLs right?

No service will have a restful API since they will be local packages.

If you want to get the website/service content and check sometime in it, try .Net Frameworks HttpClient or System.Net.WebRequest.

For easier parsing you can use HtmlAgilityPack.

Upvotes: 1

Related Questions