About 50 results
Open links in new tab
  1. HttpWebRequest.GetResponse () keeps getting timed out

    HttpWebRequest.GetResponse () keeps getting timed out Asked 12 years, 7 months ago Modified 5 years ago Viewed 102k times

  2. .Net HttpWebRequest.GetResponse() raises exception when http …

    .Net HttpWebRequest.GetResponse () raises exception when http status code 400 (bad request) is returned Asked 16 years, 9 months ago Modified 2 years, 5 months ago Viewed 192k times

  3. Error Handling in System.Net.HttpWebRequest::GetResponse ()

    Mar 3, 2012 · I have a Powershell script that uses System.Net.HttpWebRequest to communicate with a remote host. I create the request, set properties accordingly and call getresponse() and …

  4. In Python, what does getresponse() return? - Stack Overflow

    Nov 17, 2009 · In Python, what does getresponse () return? Asked 16 years, 1 month ago Modified 16 years, 1 month ago Viewed 15k times

  5. c# - System.Net.ProtocolViolationException: You must write ...

    Jul 8, 2015 · System.Net.ProtocolViolationException: You must write ContentLength bytes to the request stream before calling [Begin]GetResponse Asked 10 years, 6 months ago Modified 9 …

  6. c# - How to get error information when …

    I am initiating an HttpWebRequest and then retrieving it's response. Occasionally, I get a 500 (or at least 5##) error, but no description. I have control over both endpoints and would like the

  7. HttpWebRequest.GetResponse throws WebException on HTTP 304

    May 28, 2017 · When a web server responds to HttpWebRequest.GetResponse () with HTTP 304 (Not Modified), GetResponse () thows a WebException, which is so very weird to me. Is this …

  8. 500 internal server error at GetResponse() - Stack Overflow

    I have a heavy traffic aspx page calling a web service upon every user`s request as follows. string uri = "Path.asmx"; string soap = "soap xml string"; HttpWebRequest request = (HttpWebRequest)

  9. Why does HttpWebRequest throw an exception instead returning ...

    Apr 10, 2012 · HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(Url); request.Method = "HEAD"; using (HttpWebResponse response = request.GetResponse() as …

  10. xml - You must write ContentLength bytes to the request stream …

    You must write ContentLength bytes to the request stream before calling [Begin]GetResponse Asked 12 years, 4 months ago Modified 7 years, 2 months ago Viewed 12k times