5分ごとにURLをヒットしたい。myconsoleapp.exe という名前の ac# コンソール アプリを作成し、これを Windows タスク スケジューラでスケジュールしました。
c#
static void Main(string[] args)
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.mypage.aspx");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
}
しかし、私はこのエラーが発生していますか? :
エラー:
Application: myconsoleapp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.Net.WebException Stack: at System.Net.HttpWebRequest.GetResponse() at myconsoleapp.Program.Main(System.String[])