Tagged Questions

HttpWebRequest is a class for .NET Framework applications that provides a HTTP-specific implementation of the WebRequest class.

learn more… | top users | synonyms

76
votes
11answers
69k views

Upload files with HTTPWebrequest (multipart/form-data)

Is there any class, library or some piece of code which will help me to upload files with HTTPWebrequest? Edit 2: I do not want to upload to a WebDAV folder or something like that. I want to ...
63
votes
7answers
104k views

How to send HTTP request in java?

I want to compose a HTTP request message in java and then want to send it to a HTTP WebServer. I also want the document content of the page recieved which I would have recieved if I had sent the same ...
36
votes
4answers
22k views

HTTP POST Returns The Error: 417 “Expectation Failed.” (C#)

I'm trying to login to a website using HTTP POST. I'm sure the website only requires two POST fields: username and password; there are no hidden fields. I keep getting the following exception when I ...
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 ...
24
votes
3answers
9k views

.Net HttpWebRequest.GetResponse() raises exception when http status code 400 (bad request) is returned

I am in a situation where when I get an HTTP 400 code from the server, it is a completely legal way of the server telling me what was wrong with my request (using a message in the HTTP response ...
20
votes
2answers
9k views

C# HttpWebRequest vs WebRequest

I saw this piece of code: var request = (HttpWebRequest) WebRequest.Create("http://www.google.com"); Why do you need to cast (HttpWebRequest)? Why not just use HttpWebRequest.Create? And why does ...
19
votes
6answers
2k views

Is there any reason not to use HTTP PUT and DELETE in a web application?

Looking around, I can't name a single web application (not web service) that uses anything besides GET and POST requests. Is there a specific reason for this? Do some browsers (or servers) not support ...
18
votes
3answers
8k views

Using a self-signed certificate with .NET's HttpWebRequest/Response

I'm trying to connect to an API that uses a self-signed SSL certificate. I'm doing so using .NET's HttpWebRequest and HttpWebResponse objects. And I'm getting an exception that: The underlying ...
17
votes
4answers
299 views

What happens when a user presses stop in their web browser?

If a page is called that requires a lot of processing and the user clicks stop before the end, does the browser simply stop the request at the client side? Or is a 'stop' message sent to the server, ...
15
votes
3answers
9k views

Make in HTTP request with android

I have searched everywhere but I couldn't find my answer, is there a way to make an simple HTTP request? I want to request an PHP page / script on one of my website but I don't want to show the ...
15
votes
3answers
11k views

Using CookieContainer with WebClient class

I've previously used a CookieContainer with HttpWebRequest and HttpWebResponse sessions, but now, I want to use it with a WebClient. As far as I understand, there is no built-in method like there is ...
15
votes
5answers
6k views

Improving performance of multithreaded HttpWebRequests in .NET

I am trying to measure the throughput of a webservice. In order to do that, I have written a small tool that continuously sends requests and reads responses from a number of threads. The contents of ...
14
votes
3answers
3k views

Does .NET's HttpWebResponse uncompress automatically GZiped and Deflated responses?

I am trying to do a request that accepts a compressed response var request = (HttpWebRequest)HttpWebRequest.Create(requestUri); request.Headers.Add(HttpRequestHeader.AcceptEncoding, "gzip,deflate"); ...
13
votes
1answer
591 views

C# HttpWebRequest SEC_I_RENEGOTIATE Intermittent Errors

I'm working on login / logout functionality using SSL POST calls in a C# (.Net framework 3.5) application. Getting the response from the server via HttpWebRequest::BeginGetResponse() works 80% of the ...
13
votes
18answers
6k views

How secure is a HTTP POST?

Is a POST secure enough to send login credentials over? Or is an SSL connection a must?
12
votes
6answers
1k views

HttpWebRequest GetResponse delay on 64bit Windows

I recently tried running a .NET application on 64bit versions of Windows and was surprised to notice that all my HttpWebRequest.GetResponse() calls to web services on my local network were talking ...
12
votes
4answers
8k views

HTTP status code 200 (cache) vs status code 304?

I'm using the Google "Page Speed" plug-in for Firefox to access my web site. Some of the components on my page is indicated as HTTP status: 200 200 (cache) 304 By Google's "Page Speed". What I'm ...
11
votes
7answers
827 views

Advantages of using application/json over text/plain?

Is there any performance advantage of using content type application/json sending an object serialized to json over text/plain? I know many frameworks (like Spring) can map and serialize data based on ...
11
votes
3answers
3k views

How can you add a Certificate to WebClient (C#)?

I know it is pretty simple to add a certificate to a HttpWebRequest. However, I have not found a way to do the equivalent using WebClient. Basicly, I want to send out a POST with a specific ...
11
votes
13answers
13k views

Asynchronous HTTP Client for Java

As a relative newbie in the Java world, I am finding many things frustratingly obtuse to accomplish that are relatively trivial in many other frameworks. A primary example is a simple solution for ...
10
votes
1answer
218 views

How to request only the HTTP header with C#?

I want to check if the URL of a large file exists. I'm using the code below but it is too slow: public static bool TryGet(string url) { try { GetHttpResponseHeaders(url); ...
10
votes
1answer
12k views

Basic HTTP Authentication on iPhone

I'm trying to get a small twitter client running and I ran into a problem when testing API calls that require authentication. My password has special characters in it, so when I try to use the ...
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); ...
9
votes
2answers
2k views

HttpWebRequest.GetRequestStream : What it does?

Code exemple: HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://some.existing.url"); request.Method = "POST"; request.ContentType = "text/xml"; Byte[] documentBytes = ...
9
votes
1answer
773 views

What difference is there between WebClient and HTTPWebRequest classes in .NET?

What difference is there between the WebClient and the HttpWebRequest classes in .NET? They both do very similar things. In fact, why weren't they merged into one class (too many methods/variables etc ...
9
votes
3answers
1k views

How can I do digest authentication with HttpWebRequest?

Various articles (1, 2) I discovered make this look easy enough: WebRequest request = HttpWebRequest.Create(url); var credentialCache = new CredentialCache(); credentialCache.Add( new Uri(url), // ...
9
votes
4answers
698 views

Silverlight HttpWebRequest.Create hangs inside async block

I am trying to prototype a Rpc Call to a JBOSS webserver from Silverlight (4). I have written the code and it is working in a console application - so I know that Jboss is responding to the web ...
9
votes
4answers
5k views

How to use Android's CacheManager?

I'm currently developing an Android application that fetches images using http requests. It would be quite swell if I could cache those images in order to improve to performance and bandwidth use. I ...
9
votes
5answers
7k views

HttpWebRequest not passing Credentials

I'm trying to use HTTPWebRequest to access a REST service, and am having problems passing credentials in, see code below. I've read that NetworkCredential doesn't support SSL, and I'm hitting an https ...
9
votes
3answers
1k views

HttpWebRequest to URL with dot at the end

when i do a GET with WebRequest.Create("http://abc/test.") i get 404 because according to fiddler the trailing dot gets stripped away by .NET and the web server needs the dot. how can i prevent that ...
8
votes
4answers
1k views

In c# convert anonymous type into key/value array?

I have the following anonymous type: new {data1 = "test1", data2 = "sam", data3 = "bob"} I need a method that will take this in, and output key value pairs in an array or dictionary. My goal is ...
8
votes
4answers
8k views

The request was aborted: Could not create SSL/TLS secure channel

We are enabled to connect to an https server using WebRequest because of this error message : The request was aborted: Could not create SSL/TLS secure channel. We know that the server aint got a ...
8
votes
1answer
728 views

Uploading to imgur.com

I dontknow if any of you know, but imgur.com is a image uploading website. They do offer an API to upload to their server. Information at: http://code.google.com/p/imgur-api/wiki/ImageUploading so ...
8
votes
3answers
3k views

C# using Tor as Proxy

I am trying to use Tor-Server as a proxy in HttpWebRequest, my code looks like this: HttpWebRequest request; HttpWebResponse response; request = ...
8
votes
2answers
6k views

Getting Http Status code number (200, 301, 404, etc.) from HttpWebRequest and HttpWebResponse

I am trying to get the HTTP status code number from the HttpWebResponse object returned from a HttpWebRequest. I was hoping to get the actual numbers (200, 301,302, 404, etc.) rather than the text ...
8
votes
6answers
16k views

System.Net.WebException: The operation has timed out

I have big problem. I need send 200 objects at a time, here is my code : while (true) { NameValueCollection myNameValueCollection = new NameValueCollection(); ...
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
3answers
549 views

Should I RESTify my RPC calls over HTTP?

We have HTTP webservices that are RPC. They return XML representing the object the either retrieved or created. I want to know the advantages (if any) of "restifying" the services. POST ...
8
votes
7answers
2k views

How to download an image from web showing the progress of the download in c# using winforms?

I download an image from an URL asynchronously using WebRequest this way: public void Download(string url) { byte[] buffer = new byte[0x1000]; WebRequest request = HttpWebRequest.Create(url); ...
8
votes
2answers
6k views

“too many automatic redirections were attempted” error message when using a httpWebRequest in VB.NET

I am attempting to request a page like "http://www.google.com/?q=random" using the webrequest class in vb.net. we are behind a firewall, so we have to authenticate our requests. I have gotten past the ...
8
votes
2answers
6k views

Converting Raw HTTP Request into HTTPWebRequest Object

In .NET is it possible to convert a raw HTTP request to HTTPWebRequest object? I'm sure .NET internally doing it. Any idea which part of the .NET is actually handling this? Can I call it or is there ...
7
votes
1answer
1k views

Can't find HttpWebRequest.GetResponse() in WP7 Project

I'm trying to send a GET request using HttpWebRequest. I've found a lot of examples all over the web (for example, this one...just go down to the Scrape() method). They all basically do the same ...
7
votes
1answer
419 views

Is there any way to disable the JSON ModelBinder in ASP.NET MVC 3 RC2?

In ASP.NET MVC 3 RC2, the default ModelBinder will automatically parse the request body if the Content-Type is set to application/json. Problem is, this leaves the Request.InputStream at the end of ...
7
votes
2answers
279 views

How to limit bandwith use when using HttpWebRequest?

How to limit bandwith use when using HttpWebRequest?
7
votes
2answers
1k views

.NET: Is it possible to get HttpWebRequest to automatically decompress gzip'd responses?

In this answer, I described how I resorted to wrappnig a GZipStream around the response stream in a HttpWebResponse, in order to decompress it. The relevant code looks like this: HttpWebRequest ...
7
votes
2answers
11k views

“The format of the URI could not be determined” with WebRequest

I'm trying to perform a POST to a site using a WebRequest in C#. The site I'm posting to is an SMS site, and the messagetext is part of the URL. To avoid spaces in the URL I'm calling ...
7
votes
3answers
2k views

Is there a correct way to dispose of a httpwebrequest?

I am using a httpwebrequest, and am disposing of the response stream. Is there a correct method of disposing of the httpwebrequest, as it does not contain a close or dispose method?
6
votes
1answer
166 views

Access Stream Buffer HttpWebRequest

I'm trying to stream radio in a Windows Phone 7 app and for this I'm using ManagedMediaHelpers. The HttpWebRequest to get the continuous stream works but doesn't call the callback Url because of the ...
6
votes
2answers
53 views

What are some good Free HttpDebugging Tools

I currently use fiddler2 ,paros proxy, Live Http Header and HttpFox. I would like to know if there are some Free good quality http debugging tools available other than these. Thanks Again Guys!
6
votes
1answer
406 views

How to handle HttpWebRequest timeout in F# Async.Parallel

I just spent a long time breaking my teeth on why this code was 'hanging' for some urls: let getImage (imageUrl:string) = async { try let req = WebRequest.Create(imageUrl) ...

1 2 3 4 5 39