Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
5answers
6k views

WebClient vs. HttpWebRequest/HttpWebResponse

It seems to me that most of what can be accomplished with HttpWebRequest/Response can also be accomplished with the WebClient class. I read somewhere that WebClient is a high-level wrapper for ...
11
votes
2answers
3k views

How to set response filename without forcing saveas dialog

I am returning a stream in some response setting the appropriate content-type header. The behavior i'm looking for is this: If the browser is able to render content of the given content-type then it ...
10
votes
3answers
13k views

Uses of content-disposition in an HTTP response header

I have found the following asp.net code to be very useful when serving files from a database: Response.AppendHeader("content-disposition", "attachment; filename=" + fileName); This lets the user ...
10
votes
3answers
16k views

Sockets in C#: How to get the response stream?

I'm trying to replace this: void ProcessRequest(object listenerContext) { var context = (HttpListenerContext)listenerContext; Uri URL = new Uri(context.Request.RawUrl); ...
8
votes
4answers
8k views

How to parse HttpWebResponse.Headers.Keys for a Set-Cookie session id returned

I'm trying to create an HttpWebRequest/HttpWebResponse session with an ASP.NET website to later parse an HTML form through url params (this part I know how to do), but I do not understand how to parse ...
8
votes
6answers
7k views

C# HTTPWebResponse + StreamReader Very Slow!

I'm trying to implement a limited web crawler in C# (for a few hundred sites only) using HttpWebResponse.GetResponse() and Streamreader.ReadToEnd() , also tried using StreamReader.Read() and a loop to ...
7
votes
2answers
2k views

Is there an enum for the ContentType property on a HttpWebResponse (“text/plain”, “application/octet-stream” etc.)?

The closest thing I could find was System.Net.Mime.MediaTypeNames but that doesn't seem to have everything (like json) since it seems to be more focused around email attachments.
6
votes
2answers
568 views

Concurrency Limit on HttpWebRequest

I am writing an application to measure how fast I can download web pages using C#. I supply a list of unique domain names, then I spawn X number of threads and perform HTTPWebRequests until the list ...
5
votes
1answer
156 views

HttpWebResponse - disposing of a connection properly

I'm working on a download manager in C# and I'm making using of multiple http requests and was wondering how can one make sure a connection properly closed? Is it enough to call Dispose on the ...
5
votes
2answers
1k views

Detect HTTP Proxy error for WebRequest

How to detect that a WebRequest failed due to a web proxy error and not a target web server error? try { var request = (HttpWebRequest)WebRequest.Create("http://www.example.com"); ...
5
votes
3answers
2k views

Get HTTP requests and responses made using HttpWebRequest/HttpWebResponse to show in Fiddler

Is there any way I can hook Fiddler up to capture requests and responses made using .NET HttpWebRequest and HttpWebResponse?
5
votes
3answers
5k views

This stream does not support seek operations. HttpWebResponse

I'm making a program which downloads files over http. I've got it downloading, however I want to be able to pause the downloads, close the program and resume them again at a later date. I know the ...
4
votes
1answer
151 views

System.Net.HttpWebResponse Returning System.IO.Stream.NullStream

I have a case where the HttpWebResponse.GetResponseStream() returns a System.Net.NullStream even though examination of the HttpWebResponse object reveals that its underlying m_ConnectStream is an ...
4
votes
1answer
665 views

.NET HttpWebResponse not providing Location header

I have a problem obtaining Location header from the WebResponse: private CookieContainer _cookieContainer = new CookieContainer(); ... HttpWebRequest webRequest = ...
4
votes
3answers
2k views

HttpWebRequest and Set-Cookie header in response not parsed (WP7)

Edited to note that this is on a WP7 application. I'm trying to get the header "Set-Cookie" or access the cookie container, but the Set-Cookie header is not available. The response has the header ...
4
votes
1answer
595 views

.Net C# : Read attachment from HttpWebResponse

Is it possible to read an image attachment from System.Net.HttpWebResponse? I have an url to a java page, which generates images. When i open the url in firefox, the download dialog appears. ...
4
votes
3answers
3k views

c# HttpWebResponse Header encoding

I have the following problem. I contact an address which I know employs a 301 redirect. using HttpWebRequest loHttp = (HttpWebRequest)WebRequest.Create(lcUrl); and loHttp.AllowAutoRedirect = false; ...
4
votes
1answer
5k views

HttpWebRequest Vs webclient class who is better [closed]

Possible Duplicate: WebClient vs. HttpWebRequest/HttpWebResponse I can't guess who is better HttpWebRequest or webclient are you suggest me who is better for performance
4
votes
4answers
955 views

When to call WebResponse.Close()

WebResponse response; try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Timeout = 20000; response = request.GetResponse(); request = ...
3
votes
1answer
113 views

Speed of HttpWebRequest/HttpWebResponse

Is there any quicker alternative to the code below to get a http response into a string? string req = "http://someaddress.com"; Stopwatch timer = new Stopwatch(); timer.Start(); using ...
3
votes
2answers
161 views

How To Parse Multipart HttpWebResponse

I'm completely lost on how to parse this multipart httpresponse. This is the format that I receive: MIME-Version: 1.0RETS-Version: RETS/1.8RETS-Server: Interealty-RETS/1.5.247.0Transfer-Encoding: ...
3
votes
3answers
251 views

Fast HTTP call ASP.Net

I'm sending an HTTPWebRequest to a 3rd party with the code below. The response takes between 2 and 22 seconds to come back. The 3rd party claims that once they receive it, they are sending back a ...
3
votes
1answer
226 views

Should one dispose of the WebResponse reference in WebException, if raised from WebClient?

Related question: WebClient in .Net not releasing socket resources While debugging a resource leak issue, I noticed that System.Net.WebException (a non-disposable type) contains a reference to ...
3
votes
1answer
1k views

powershell httpwebrequest GET method cookiecontainer problem?

I'm trying to scrape a website that has user authentication. I am able to do a POST to send my login and stores a cookie. However, after the login I get a 403 error when trying to access the protected ...
3
votes
1answer
1k views

How do I login, navigate, and return data from a protected website, so far everything I'm doing isn't working

and while I've found many articles and other information about how to GET and POST using HttpWebRequest and Response, I find myself having a hard time getting things to work like I would expect them ...
3
votes
2answers
473 views

Bizzare HttpWebResponse Error: ServerProtocolViolation

I have tried everything and I can not figure out why this error happens. Background: I have an IPad application, written in MonoTouch and I have a thread that runs in the background, and every 15 ...
3
votes
3answers
90 views

Is there a way to examine WebResponse without affecting the underlying response stream in .NET?

After a call to initial HttpWebResponse.GetResponseStream() and reading through the stream, that stream is done for and cannot be reused. I have a situation where I need to examine the content of the ...
3
votes
3answers
1k views

Getting “underlying connection was closed” on HttpWebRequest

I have an application written in VB.NET (NOT asp.net, it is a Windows Console app). I am trying to call a url (an html page) and get back the response into a string. The response is straight JSON, no ...
3
votes
1answer
163 views

Is it possible to download only one part of a file (e.g, the first 100KB) in C#?

I'm just curious about whether this is possible - I know how to download a file, but how can I download only the first 100KB of a file?
3
votes
1answer
281 views

Httpwebrequest / Httpwebresponse - Redirect Count

I'm trying to figure out how many times my web request was redirected before I finally landed at the end content. I'm creating my web request as follows: var httpRequest = (HttpWebRequest) ...
3
votes
3answers
1k views

How to read the response stream before the Http response completes

When making a request using HttpWebRequest object, I need to call the method GetResponse() to send the request and get the response back. The problem with this method is that it doesn't return the ...
3
votes
2answers
2k views

Using .NET to Post a file to Server HttpWebRequest or WebClient

Okay so here is the deal. As the question states, I'm trying to POST a file to a webserver and am having a few issues. I've tried posting this same file to the same webserver using Curl.exe and have ...
3
votes
1answer
968 views

Segmented C# file downloader

Have been trying to write a program in C# that downloads a file using multiple segments at once like most download managers, and I've run into the issue that the files downloaded are corrupted. E.g. I ...
3
votes
6answers
4k views

Why is this WebRequest code slow?

I requested 100 pages that all 404. I wrote { var s = DateTime.Now; for(int i=0; i < 100;i++) DL.CheckExist("http://google.com/lol" + i.ToString() + ".jpg"); var e = ...
3
votes
2answers
10k views

C# Xml in Http Post Request Message Body

I am looking for an example of how, in C#, to put a xml document in the message body of a http request and then parse the response. I've read the documentation but I would just like to see an example ...
2
votes
2answers
217 views

HttpWebResponse.GetResponse() fiddler says “Response Header parsing failed. ”

I'm making a request to a website via the HttpWebRequest/HttpWebResponse objects. I'm making several successful calls to the web site and every other call to the same dynamic page is failing. In the ...
2
votes
2answers
199 views

how to set useUnsafeHeaderParsing in code

I am getting the following exception: The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF From this question: HttpWebRequestError: The server ...
2
votes
1answer
56 views

How can I process the response stream from a webpage that displays a video?

<html> <body style="background-color: rgb(38,38,38);"> <video controls="" autoplay="" name="media" style="margin: auto; position: absolute; top: 0; right: 0; ...
2
votes
0answers
306 views

When using HttpWebRequest on WP7, Request.EndGetResponse throwing “Not Found” error after 1 minute

I am using HttpWebRequest to call a webservice from WP7. Everything works fine on WP7 emulator but when i use WP7 device, it throws "Not Found" exception if webservice doesn't respond in 1 minute. ...
2
votes
1answer
270 views

c# How to get error information when HttpWebRequest.GetResponse() fails

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 ...
2
votes
3answers
136 views

Keep trying to talk to server when the Internet is down

So my application is exchanging request/responses with a server (no problems), until the internet connection dies for a couple of seconds, then comes back. Then a code like this: response = ...
2
votes
1answer
92 views

HttpWebRequest setting host to garbage but still getting OK response

I am using an HttpWebRequest and passing in an Address which is an IP. I then set the host to a garbage value. When I call GetResponse() I am getting an OK even though I would expect this to fail ...
2
votes
3answers
514 views

VB.NET - download zip in Memory and extract file from memory to disk

I'm having some trouble with this, despite finding examples. I think it may be an encoding problem, but I'm just not sure. I am trying to programitally download a file from a https server, that uses ...
2
votes
1answer
249 views

HttpWebRequest and WebResponse.GetResponse give incomplete response

I'm pretty RESTless right now because I keep getting incomplete responses from Amazon. I'm using the Product Advertising API, making one ItemLookup request to the server. The C# code is pretty basic: ...
2
votes
1answer
142 views

encoding issues with content in response from HttpWebRequest

I am using a HttpWebRequest to read in a web page using the following code: var pageurl = new Uri(url, UriKind.Absolute); var request = (HttpWebRequest)WebRequest.Create(pageurl); ...
2
votes
1answer
291 views

c# http Post not getting anything in webresponse

Here's my code for Request and Response. System.IO.MemoryStream xmlStream = null; HttpWebRequest HttpReq = (HttpWebRequest)WebRequest.Create(url); xmlStream = new ...
2
votes
1answer
277 views

WebOperationContext.Current.OutgoingResponse.StatusDescription is ignored

Value that I set on server side for WebOperationContext.Current.OutgoingResponse.StatusDescription property is ignored. Client side gets a default message, for example Not Found for 404 code, OK for ...
2
votes
0answers
560 views

Online exception:Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host

We are talking about a software that I implemented (client and server sides), sometimes I get the following error while downloading. Is it something from the server side or the client side? ** The ...
2
votes
2answers
2k views

reading HttpwebResponse json response, C#

In one of my apps, I am getting the response from a webrequest. the service is Restful service and will retun a result like below json format; { "id" : "1lad07", "text" : "test", "url" : ...
2
votes
4answers
394 views

Never ending Stream in HttpWebResponse

how can i read some bytes and disconnect? i use such code using (HttpWebResponse resp = (HttpWebResponse)request.GetResponse()) { using (Stream sm = resp.GetResponseStream()) { using ...

1 2 3 4 5