Tagged Questions
WebClient is a class for .NET Framework 4 applications that provides methods for sending and receiving data from a resource identified by a URI.
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 ...
19
votes
2answers
7k views
WebClient + HTTPS Issues
I am currently integrating with a system created by a 3rd party. This system requires me to send a request using XML/HTTPS. The 3rd party send me the certificate and I installed it
I use 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 ...
13
votes
4answers
4k views
How can I programmatically remove the 2 connection limit in WebClient
Those "fine" RFCs mandate from every RFC-client that they beware of not using more than 2 connections per host...
Microsoft implemented this in WebClient. I know that it can be turned off with
...
13
votes
4answers
10k views
Set timeout for webClient.DownloadFile()
I'm using webClient.DownloadFile() to download a file can I set a timeout for this so that it won't take so long if it can't access the file?
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 ...
10
votes
3answers
8k views
How to check if a file exists on a server using c# and the WebClient class
In my application I use the WebClient class to download files from a Webserver by simply calling the DownloadFile method. Now I need to check whether a certain file exists prior to downloading it (or ...
9
votes
1answer
774 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 ...
8
votes
7answers
3k views
C# WebClient disable cache
Good day.
I'm using the WebClient class in my C# application in order to download the same file every minute, and then the application performs a simple check to see if the file has been changed, and ...
8
votes
1answer
1k views
Client Web Browser Behavior When Handling 301 Redirect
The RFC seems to suggest that the client should permanently cache the response:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
10.3.2 301 Moved Permanently
The requested resource has ...
8
votes
2answers
2k views
How to get Screen Shot / Screen Capture from Web user on MVC site?
I've seen a few different apps that allow users to take screen shots on their PC and then the utility will automatically upload the image to the web server. I'd like to incorporate this type of ...
8
votes
4answers
8k views
How to fill forms and submit with Webclient in C#
Hey, I'm new at using the the libraries WebClient, HttpResponse and HttpRequest in C#, so bare over with me, if my question is confusing to read.
I need to build a WinForm based on C# which can open ...
7
votes
4answers
2k views
How to get status code from webclient?
I am using webclient class to post some data to a web form. I would like to get the response status code of the form submission. So far I've found out how to get the status code if there is a ...
7
votes
1answer
660 views
Automatically decompress gzip response via WebClient.DownloadData
I wish to automatically uncompress GZiped response.
I am using the following snippet:
mywebclient.Headers[HttpRequestHeader.AcceptEncoding] = "gzip";
mywebclient.Encoding = Encoding.UTF8;
try
{
...
7
votes
4answers
2k views
System.Net.WebClient fails weirdly
I am trying to download some data from the reporting services instance on our TFS server.
Given that the code should run on a computer that is not domain-joined, I figured that I would set the ...
6
votes
5answers
81 views
How do I check a WebClient Request for a 404 error
I have a program I'm writing that downloads to files. The second file is not neccassary and is only some times included. When the second file is not included it will return an HTTP 404 error.
Now, ...
6
votes
2answers
4k views
How to login with WebClient - C#
i want to download something with using WebClient object at C# . but the download domain requires to be logged in. How can i login and keep session data with using WebClient. i know how to post data ...
6
votes
1answer
533 views
WebClient Unicode - Which UTF8?
When I create a WebClient to consume some RESTful xml, I can specify the unicode encoding 2 ways:
WebClient wc = new WebClient ();
wc.Encoding = Encoding.UTF8;
wc.Encoding = UTF8Encoding.UTF8;
...
6
votes
2answers
588 views
Waiting on multiple asynchronous POST requests
I need to make multiple asynchronous calls from inside a wcf service hosted in IIS (might be relevant, I don't know). The calls are to other services, but I make them by POSTing a string to the ...
6
votes
2answers
274 views
Is there a sourcecode management system (svn, git, etc.) webclient that can commit?
Is there a sourcecode management system (svn, git, etc.) webclient which you can use to change the code? (without ruining the system), I am hosting at sourceforge.
6
votes
4answers
480 views
How to keep statefull web clients in sync, when multiple clients are looking at the same data?
In a RIA web client, created with GWT, the state is maintained in the web client, while the server is (almost) stateless (this is the preferred technique to keep the site scalable).
However, if ...
6
votes
2answers
558 views
How to download file into string with progress callback?
I would like to use the WebClient (or there is another better option?) but there is a problem. I understand that opening up the stream takes some time and this can not be avoided. However, reading it ...
6
votes
4answers
4k views
How to change the timeout on a .NET WebClient object
I am trying to download a client's data to my local machine (programatically) and their webserver is very, very slow which is causing a timeout in my WebClient object.
Here is my code:
WebClient ...
6
votes
2answers
2k views
Using WebClient within ASP.NET MVC asynchronously?
I have an ASP.NET MVC application that currently uses the WebClient class to make a simple call to an external web service from within a controller action.
Currently I am using the DownloadString ...
6
votes
2answers
5k views
System.Net.WebClient vs. Proxy Authentication 407 error
I'm trying to figure out how to robustly handle proxy authentication errors (HTTP
407 status code) when using the System.Net.WebClient class.
In the field, we see many users receiving a 407 proxy ...
5
votes
2answers
89 views
On which thread(s) does WebClient raise its events?
I can not find any documentation that specifies on which thread WebClient raises its events. I ran some tests and determined the following:
If called from a UI thread (say from an event handler) the ...
5
votes
2answers
433 views
Using WebClient in WCF Service
I am using WebClient to download some resource in following way:
Stream stream;
try
{
WebClient webClient = new webClient();
stream = webClient.OpenRead(MyResourceUri);
}
catch (Exception)
...
5
votes
2answers
1k views
Is there anyway to force WebClient to not return cached data?
I'm retreiving images from a web server directory like this:
WebClient webClientImgDownloader = new WebClient();
webClientImgDownloader.OpenReadCompleted += new ...
5
votes
1answer
1k views
How to show download progress from FTP
I am downloading a file from an FTP site (Async) and need to update a progress bar. I have read MS documentation that states that this can be done is the WebClient class's GetWebRequest() is ...
5
votes
5answers
893 views
Which technology is preferable to build a web based GUI Client?
I've well developed Python Server having workflows, views, object - ORM/OSV, etc...
Server/Client communication based on socket protocol, can be done by any of service
1. XMLRPC Service
2. Socket ...
5
votes
5answers
987 views
How to read an ASP.NET internal server error description with .NET?
Behold the code:
using (var client = new WebClient())
{
try
{
var bytesReceived = client.UploadData("http://localhost", bytesToPost);
var response = ...
5
votes
6answers
15k views
(C#) How to check if System.Net.WebClient.DownloadData is downloading a binary file?
I am trying to use WebClient to download a file from web using a Winform application. However, I really only wanted to download HTML file. Any other type I will want to ignore. I checked the ...
4
votes
1answer
226 views
WebClient is very slow
I have problem with Webclient.
It is very slow. It takes about 3-5 seconds to downloadString from one website.
I don't have any network problems.
This is my Modifed WebClient.
using System;
using ...
4
votes
3answers
402 views
C# async methods still hang UI
I have these two methods, that I want to run async to keep the UI responsive. However, it's still hanging the UI. Any suggestions?
async void DoScrape()
{
var feed = new Feed();
...
4
votes
1answer
259 views
WebClient.UploadString method doesn't emit BOM. Why?
The intent of the following code is to post data that's begins with byte order mark (BOM) over HTTP.
var client = new WebClient();
client.Encoding = new UTF8Encoding(true /* ...
4
votes
1answer
502 views
How can you add a Certificate to WebClient in Powershell
I wan't to examine a Webpage which requires Client Side Certificate Authentication.
How can i provide my Cert from the Certstore to the Webrequest:
Is there a way to specify this in Credentials odr ...
4
votes
1answer
424 views
POST'ing arrays in WebClient (C#/.net)
I've got a .net application that has a WebRequest that to a POST adds multiple times the same key, thus making it an array in the eyes of PHP, Java Servlets etc. I wanted to rewrite this to using ...
4
votes
3answers
474 views
Target Machine Actively Refused Connection
Hey,
There are several questions like this, but my situation seems a bit different. I have extremely simple code:
WebClient client = new WebClient();
client.DownloadFile("http://www.xkcd.com", ...
4
votes
3answers
400 views
SSRS Url Access and Paging
I have an app that executes and displays reports from SSRS retrieved through URL Access (http://msdn.microsoft.com/en-us/library/ms153586.aspx) Unfortunately, one of these reports is HUGE, resulting ...
4
votes
4answers
1k views
Is WebClient.DownloadFileAsync really this slow?
I'm using the DownloadFileAsync method of WebClient to download some files from a server, and I can't help but notice that in my informal testing of my code within VS2010, it blocks for about 3 ...
4
votes
2answers
1k views
Silverlight streaming upload
I have a Silverlight application that needs to upload large files to the server. I've looked at uploading using both WebClient as well a HttpWebRequest, however I don't see an obvious way stream the ...
4
votes
14answers
3k views
WebClient.DownloadDataAsync is freezing my UI
I have in my Form constructor, after the InitializeComponent the following code:
using (WebClient client = new WebClient())
{
client.DownloadDataCompleted += new ...
4
votes
3answers
15k views
C# Uploading files to file server
Currently I have an application that receives an uploaded file from my web application. I now need to transfer that file to a file server which happens to be located on the same network (however this ...
3
votes
1answer
100 views
Reading ISO 8859 1 encoding, xml stream download with webclient
I am trying to make a basic webclient call to get an xml stream for a post tracking app for WP7. It does work and I do get the xml but the problem is as I am living in Sweden we have special ...
3
votes
1answer
201 views
C# WebClient login to accounts.google.com
I have very difficult time trying to authenticate to accounts.google.com using webclient
I'm using C# WebClient object to achieve following.
I'm submitting form fields to ...
3
votes
2answers
177 views
Issue downloading large files via WebClient / FTP
I'm currently building an application that is, among other things, going to download large files from a FTP server. Everything works fine for small files (< 50 MB) but the files I'm downloading are ...
3
votes
1answer
109 views
How to communicate WCF exceptions to WebClient
I have a WCF web service which throws exceptions when invalid data is submitted. The data is submitted via an HTTP Post using the WebClient object.
Here is the code for the web service:
...
3
votes
1answer
118 views
Moonlight, WebClient and “Exception has been thrown by the target of an invocation”
I'm writing a little engine to download text from some .php files, I've done this engine in Visual c# and I haven't got problems.
I'm doing this:
[ ... ]
WebClient client = null;
...
3
votes
1answer
140 views
Silverlight 4, subclassing WebClient
Following an advice, I saw at several web pages (for example C#: Using CookieContainer with WebClient class), I subclassed WebClient class to use a cookie with it:
public class MyWebClient : ...