Search Results

0
votes
2answers
238 views

WebClient multi-threaded response

Hi, I am performing two parallel requests to my web service using WebClient and multithreading them with ThreadPool. However, I'm having an issue in one of the threads where I get this WebExceptio …
2
votes

Why is this WebRequest code slow?

I noticed that an HttpWebRequest hangs on the first request. I did some research and what seems to be happening is that the request is configuring or auto-detecting proxies. If you set Proxy = nu …
0
votes

WebClient multi-threaded response

I fixed my issue by adding request.ServicePoint.Expect100Continue = false; before making my POST call. What was happening according to wireshark was my HttpWebReq …