About 50 results
Open links in new tab
  1. WebRequest - set Timeout property - social.msdn.microsoft.com

    Aug 23, 2007 · Question 0 Sign in to vote Hi all, calling my web service, i got this exception when invoking one of the method: System.Net.WebException: The operation has timed out Stack …

  2. HttpWebRequest request = (HttpWebRequest)WebRequest.Create

    Sep 29, 2011 · The following works, and must be put in immediately after the HttpWebRequest request= (HttpWebRequest)WebRequest... request.KeepAlive = false; Marked as answer …

  3. HTTPWebRequest header problems - social.msdn.microsoft.com

    Aug 11, 2023 · I'm trying to match the Request & Response Headers in my webrequest (called flash request), and I've matched everything except the status code (which is 200). In the …

  4. Invalid URI: the URI is empty. - social.msdn.microsoft.com

    Dec 29, 2014 · I want to read address lines from a file. I do not a user to enter URLs. I wrote this: (Now I do not have this Error: cross-thread operation not valid: control 'txtUrl' accessed from a …

  5. WebClient not working - social.msdn.microsoft.com

    May 25, 2012 · I have a Silverlight control that exposes a couple of methods. I also have a JavaScript bridge that interacts between Silverlight and the server. When the server needs to …

  6. How to restart IIS from ASP.NET code

    Oct 7, 2021 · We used this code a few years ago. It does an IISRestart and then wait 10 seconds and tries to open a web page. The way we could tell if IIS restarted correctly. This is old and …

  7. Worker role Timeout issue - social.msdn.microsoft.com

    Nov 14, 2012 · To send a TCP Keep-Alive every 50 seconds from C#: webRequest.ServicePoint.SetTcpKeepAlive (true, 50 * 1000, 1000); (MSDN Reference) …

  8. MSDN

    MSDN

  9. Troubleshoot Traffic Manager on Azure

    Jun 8, 2017 · My traffic manager used to be online when all of the sudden it was degraded. Still wonder how to troubleshoot it beyond the classic cmd invoke-webrequest. Edited …

  10. HttpClient Sending X509 Certificate - social.msdn.microsoft.com

    Jun 3, 2021 · X509Certificate2Collection certificate = GetCertificate (); var httpRequest = (HttpWebRequest)WebRequest.Create ("urlgoeshere"); httpRequest.ClientCertificates = …