calling url using httpclient as httpwebrequest works slowly after 1 lac request,please help me and i need to send 6-7 lkh get request to end user.currently i am using below
method
WebRequest request = WebRequest.Create(URL);
WebResponse response = request.GetResponse();
new StreamReader(response.GetResponseStream()).ReadToEnd();
response.Close();
Loading
Nilesh ShahPosted Aug 9, 2017, 8:47 AM
I think there can't be nothing in your code, your code just be fine,
but there are some settings on server which will restrict/dither requests from a particular IP after certain no. of requests.