Top "Webrequest" questions

WebRequest is a abstract class in .NET Framework for making requests to URIs (including HTTP, HTTPS, FTP and FILE protocols).

Reading data from an open HTTP stream

I am trying to use the .NET WebRequest/WebResponse classes to access the Twitter streaming API here "http://stream.twitter.…

c# http streaming webrequest webresponse
C# WebRequest using Cookies

I have a winforms application i have been working on that runs multiple tests on consumer accounts. The tests require …

c# winforms cookies webrequest
"too many automatic redirections were attempted" error message when using a httpWebRequest in .NET

I am attempting to request a page like "http://www.google.com/?q=random" using the webrequest class in vb.…

.net vb.net httpwebrequest webrequest
How to post XML document to HTTP with VB.Net

I'm looking for help with posting my XML document to a url in VB.NET. Here's what I have so …

vb.net webrequest xmldocument webresponse
How to get website title from c#

I'm revisiting som old code of mine and have stumbled upon a method for getting the title of a website …

c# webrequest
Copying Http Request InputStream

I'm implementing a proxy action method that forwards the incoming web request and forwards it to another web page, adding …

c# asp.net asp.net-mvc httpwebrequest webrequest
Multithreading a large number of web requests in c#

I have an program where I need to create some large number of folders to an external sharepoint site (external …

c# multithreading webrequest
ASP.NET Multithreading Web Requests

I'm building a page in my ASP.NET solution that retrieves most of its data from a 3rd Party API …

c# asp.net multithreading webrequest
What makes this HTTPS WebRequest time out even though it works in the browser?

Here's my request: var request = (HttpWebRequest) WebRequest.Create("https://mtgox.com/"); request.CookieContainer = new CookieContainer(); request.AllowAutoRedirect = false; request.Accept = "…

c# .net https httpwebrequest webrequest
c# - http web request with https and basic authentication

I'm trying to do a webrequest over a https url with basic authentication. And its not working! below is my …

c# https httpwebrequest basic-authentication webrequest