About 14,500,000 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 status ...

    .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. c# - How do I resolve 'System.Net.WebException: The remote server ...

    <system.web> <customErrors mode="Off" /> //Other items goes here </system.web> The possible reasons i can think of are You have an incorrect connection string. Some have the code is not able to …

  4. 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 …

  5. c# - How to get error information when HttpWebRequest.GetResponse ...

    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

  6. How to get value of form response? - Stack Overflow

    Apr 19, 2022 · It's very likely that the source that lead you to getResponse() was refering to FormApp.ItemResponse.getResponse. In order to be able to used this method, first your code …

  7. 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 years ago …

  8. Handling Errors from HttpWebRequest.GetResponse - Stack Overflow

    Sep 30, 2010 · Handling Errors from HttpWebRequest.GetResponse Asked 16 years, 5 months ago Modified 15 years, 3 months ago Viewed 34k times

  9. 500 Internal Server Error when using HttpWebRequest, how can I get …

    Jan 12, 2017 · httpRequestObj.Method = "GET" httpRequestObj.UseDefaultCredentials = True * httpResponse = httpRequestObj.GetResponse Using reader As StreamReader = New …

  10. C# - Get Response from WebRequest and handle status codes

    HttpWebRequest requestChangelog = (HttpWebRequest)HttpWebRequest.Create(url); requestChangelog.Method = "GET"; HttpWebResponse changelogResponse = …