About 6,190,000 results
Open links in new tab
  1. HttpWebRequest.GetResponse () keeps getting timed out

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

  2. c# - How do I resolve 'System.Net.WebException: The remote …

    Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.

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

    The remote server returned an error: (500) Internal Server Error. at System.Net.HttpWebRequest.GetResponse () Does anybody have any idea about this error or …

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

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

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

    HttpWebResponse changelogResponse = (HttpWebResponse)requestChangelog.GetResponse(); // Now call the function and set the …

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

    Nov 17, 2009 · In Python, what does getresponse () return? Asked 15 years, 11 months ago Modified 15 years, 11 months ago Viewed 14k times

  7. The remote server returned an error: (403) Forbidden

    Exception: System.Windows.Markup.XamlParseException: The invocation of the constructor on type 'XApp.MainWindow' that matches the specified binding constraints threw an exception. -- …

  8. 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, 3 months ago Modified 8 …

  9. WebRequest.GetResponse() is throwing error 401: Unauthorized

    As of right now I don't have access to the IIS settings so I couldn't enable Anonymous Authentication which is very possible why Cybernate's answer was not working for me. I did …

  10. How to use WebRequest to post data and get response from a …

    Oct 1, 2009 · I need to implement an application to post request to a given url and get response. What are the best methods to post request to a given url and get response? Please help.