自前実装したウェブAPIをテストするために簡単なアプリを書いた。再利用できそうなのでスニペット的に覚書。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
class Program { static void Access(string url) { try { var request = WebRequest.Create(url) as HttpWebRequest; Console.WriteLine(url); using (var response = request.GetResponse()) { using (var stream = response.GetResponseStream()) { // } } } catch (Exception e) { Console.WriteLine("{0} Exception caught.", e); } } static void Main(string[] args) { Random rnd = new Random(); while (true) { int count = rnd.Next(9) + 1; for (int i = 0; i < count; i++) { Access("http://example.com/api?" + (rnd.Next(99) + 1)); } System.Threading.Thread.Sleep(5000); } } } |