WebClient is a class for .NET Framework applications that provides methods for sending and receiving data from a resource identified by a URI.

learn more… | top users | synonyms

0
votes
1answer
16 views

Using WebClient to login and download files

I've found different examples of doing this, but haven't been able to get any combination of them to work. Basically, I have an intranet system that can generate documents from a web link, and I know ...
2
votes
1answer
75 views

Async Exception Handling in F#

I am trying to write non-blocking code in F#. I need to download a webpage, but sometime that webpage doesn't exist and an exception is thrown (404 Not Found) by AsyncDownloadString. I tried the code ...
0
votes
1answer
21 views

Unable to receive cookie using WebClient

Correct me, if I'm wrong in my thoughts. As I understand, any new instance of WebClient class will start a new session, generating the new session id. To prevent this, I should receive a session id ...
1
vote
1answer
42 views

The remote name could not be resolved - webclient

I am facing this error : The remote name could not be resolved: 'russgates85-001-site1.smarterasp.net' When I request html contents to read using web client it gives me error. Below is my code. ...
0
votes
0answers
12 views

ThreadAbortException suddenly appears after godaddy changed servers

Recently, one of my clients informed me that GoDaddy had contacted them to let them know they were going to move their hosting account from one server to another. When they did that, they failed to ...
0
votes
0answers
18 views

WebClient doesn't raise events

I'm trying to download all files listed by a PHP script with the file name and md5 checksum, comparing them to the local ones and if they differ download updated ones. It downloads file by file for ...
0
votes
1answer
15 views

Silverlight WebClient file upload issue in Chrome

I have a strange issue about WebClient class in Silverlight app when using Chrome. I can successfully upload file with IE but when I use Chrome its failing. When I digg into it I see that WebClient ...
1
vote
1answer
39 views

How to avoid the 0-byte file on Webclient download error

When using the following code to download a file: WebClient wc = new WebClient(); wc.DownloadFileCompleted += new System.ComponentModel.AsyncCompletedEventHandler(wc_DownloadFileCompleted); ...
0
votes
0answers
21 views

Remote post doesn't work but no errors to be found

So I'm back to remote post hassles This time, I've got a PayPal Buy Now button that I'm trying to get working. Currently my code just builds the post that goes to PayPal and when the payment is ...
0
votes
1answer
57 views

WebClient Download - “Access to the path 'c:\\windows\\system32\\inetsrv\\MyPrintManager.exe' is denied”

I am attempting to download a file from another IIS site on my local machine. I have my main website that is trying to download from another public site that contains a few files that the user will be ...
0
votes
0answers
15 views

Download String Async with post parameters

I've used WebClient.DownloadStringAsync to get a Page's output, until my URL got too long (too much GET parameters). Now I'd like to send the parameters via POST, but still get the site's output. I ...
0
votes
0answers
20 views

Setting WebClient identify in C# for AWStat

I am working on a C# application that downloads xml from a web server using WebClient. How do I set the identity of the application so I can see it in the web servers AWStat? I try both ...
0
votes
0answers
7 views

Determine whether DIGEST authentication is required

I am using .net's WebClient class to access files on a WebDAV server. Currently, I am setting the credentials directy: webClient.Credentials = new NetworkCredential(ioc.UserName, ioc.Password); ...
1
vote
1answer
35 views

Why does publish fail to publish System.Net.Http.dll?

I have a WPF application written in C# that is failing to publish the System.Net.Http.dll and System.Net.Http.WebRequest.dll. When the user launches the application they receive the error: Could ...
0
votes
1answer
52 views

Download file from server using URL

I have a dot net mvc project where on the server side people generate reports. To allow downloading report from web, I have a function in controller that return File. public FilePathResult ...
0
votes
0answers
39 views

Using WebClient.UploadFile within ASP.NET MVC application causes Exception

I have the following code: var wc = new WebClient(); byte[] response = wc.UploadFile("http://{mydomain.com}/Images/UploadImage/", "POST", @"C:\Penguins.jpg"); string s = ...
0
votes
2answers
36 views

how to set path to a file in ASP C# properly?

working on a website here, in ASP and C#. my problem is, when I try to read a file, it finds the wrong directory. here are the code im using: addtext.Text = new ...
1
vote
1answer
61 views

Download full directory with subdirectories with FTP C#

How can I download a full directory from the ftpserver? I can download with this 1 file: try { string strUri = strDsiteAdres+ "//" + file+"/"; Uri ...
1
vote
0answers
15 views

WebException timout vs HttpWebResponse timout

I'm using the Asp.Net WebClient to do an http post. I have a try catch around the code to catch WebException. try { using (MyWebClient wc = new MyWebClient()) ...
1
vote
1answer
46 views

How to catch 404 WebException for WebClient.DownloadFileAsync

This code: try { _wcl.DownloadFile(url, currentFileName); } catch (WebException ex) { if (ex.Status == WebExceptionStatus.ProtocolError && ex.Response != null) if ((ex.Response as ...
0
votes
2answers
129 views

Can't Download Json Array Windows phone

I can download a Json array in Windows 8 with the following code: aString = "http://website.com/image/image_manifest.json"; private async void GetJSON(string aString) { var ...
0
votes
1answer
64 views

How to 'await' a WebClient.UploadStringAsync request?

The async pattern seems to be call an asynchronous, then yield control after awaiting a result, which makes a lot of sense. However the WebClient class UploadStringAsync method does not return a ...
0
votes
1answer
22 views

Scheduling C# app throughts Webclient exception

I have developed a c# application to download a zip file from a site, when manually run the app, it does its job normally and exits, But when i schedule it to run automatically using task scheduler in ...
0
votes
1answer
41 views

Carry on with UI while waiting for WebClient

I'm trying to get a progress bar to show the program is loading (using ProgressStyle.Marquee) while a WebClient object reads from a site. The problem is that upon clicking the button that begins the ...
0
votes
0answers
27 views

Implementing Three-Tier Database Architecture

I want to construct a simple (prototype) implementation of a three-tier database architecture. I have managed to create basic Java class that uses the JDBC API (Layer 2) to connect to a postgres ...
-3
votes
0answers
52 views

How do I download multiple files asynchronously?

I'm doing a file downloader websites but are two or more files with the following code is downloaded one by one. Does anyone know some code that serves to download 2 or more files? ...
1
vote
0answers
14 views

Possible to inherit from WebClient without my code being a “design time component”?

I have a piece of code like this: public class NoFollowWebClient : WebClient { protected override WebRequest GetWebRequest(Uri address) { var request = ...
1
vote
2answers
49 views

Downloading and reading the same file by many processes w/ C# 4.0

I need to be able to read a file which should be saved locally, and if the file doesn't exist yet I need to download it. Here's a simplified version of what I'm trying to accomplish: // See if the ...
0
votes
0answers
16 views

web client ISO-8859-9 characters contaminates

I've generated webclient using Weblogic8.1 - ClientGen (with ant).My eclipse encoding set is ISO-8859-9.When i set a function parameter which includes Turkish character using client.jar sometimes ...
0
votes
1answer
57 views

Access denied when writing to a local path? [closed]

After downloading from my FTP Server, and trying to overwrite that file with an updated one, I get an exception saying: "UnauthorizedAccessException was handled", that, Access to the Path 'C:\My ...
2
votes
2answers
94 views

WebClient downloads files to 0KB?

The files that I need to overwrite are on my local machine. The files that I am retrieving are from my FTP Server. The files are all of the same names, but differ in bytes, e.g., they are updated. I ...
0
votes
0answers
42 views

How to handle OutOfMemoryException in WebClient callback

My Excel AddIn sends multiple web service calls asychronously In callback, I will plot either data or error message to Excel cells. When there are so many web service calls requesting a large amount ...
0
votes
1answer
53 views

SILVERLIGHT sending file to server

I am using PhotoChooserTask to select image from windows phone and then I want to send this file/image to the server. WebClient has method UploadFile but WebClient in Silverlight has not this method. ...
1
vote
2answers
62 views

Azure REST WebClient PUT Blob

I'm trying to simply upload a new blob to an Azure Storage countainer using WebClient like this : var sas = "[a new generated sas with Read, Write, List & Delete permissions]"; var sData = "This ...
0
votes
2answers
44 views

How to make a synchronous web call from within a background agent

I am fairly new to wp7 development, and currently developing an app that has a background agent to update values based upon responses it gets from a web call to an api. My problem is that the ...
0
votes
1answer
25 views

How to read uploaded file in post buffer without name in Rails

How does one read a file from the post buffer in Rails, when it doesn't have a name? My client is a c# application, which calls WebClient.UploadFile(). This POSTs a file to my server, with it's ...
0
votes
1answer
95 views

System.Net.WebClient DownloadFile not making HTTP Request

I am working on an application which is supposed to download a file at a given URL to a path. I used the code shown below which I have seen in many places. I am using fiddler to monitor my ...
-2
votes
0answers
47 views

C# WebClient download strig PHP [closed]

I have this code : try { this.PatchVersion = WebClient1.DownloadString(URL); this.versionint = Convert.ToInt32(Properties.Settings.Default.patch_current_version) + 1; ...
-3
votes
2answers
80 views

C# how to increment variable in constructor - windows service [closed]

I have a Windows service and I want to change the URL whenever the constructor is called. I am forming the URL in the constructor by concatenating a variable to it and the variable is being ...
-1
votes
2answers
70 views

C# Webclient POST [duplicate]

I am learning c#, and my first app is Manga Reader. I have problem with "click" Continue via Webclient (or do something, which will give the same results) string URI = ...
1
vote
3answers
82 views

How can I diagnose the difference between a PHP curl POST and a C# WebClient POST?

I have PHP code such as the following: $url = "http://my.parkpay.co.za/includes/api.php"; # URL to WHMCS API file goes here $postfields["username"] = $username; $postfields["password"] = ...
0
votes
1answer
38 views

C# Error With A progress bar showing progress of a download and ran file from the internet

Okay so i am new to programming and i wanted to make a toolstrip with a progress bar that would show the progress of a file fetched from the internet and opened up, here is the code snipplet ...
0
votes
0answers
60 views

Synchronous Call in Windows Phone 7

I know that I cannot make a true synchronous call in Windows Phone 7. However, I'm trying to at least block the threads from processing until the async call is made or there is a timeout. I've tried ...
1
vote
0answers
41 views

How to use Downloadfile to save an image into a specific folder

for (int counter = 0; counter <= temparray.Length - 1; counter = counter + 1) { if ((counter < temparray.Length + 2) && (temparray[counter] == "><img") && ...
0
votes
1answer
44 views

Getting a what i believe to be a webclient error in C#, Need help Please

Okay so i am fairly new to programming and was told to just start acouple projects and google/ask if i need hep so here i am, im making a program that will download and run a file from the internet ...
3
votes
1answer
59 views

How to enter password automatically in Webview

I am new to Java and Android and I got a question. I think the solution is maybe very easy but I couldn't solve it. I created an application with a WebView the thing is I want that the webview enters ...
0
votes
0answers
26 views

ESRI REST Geometry - Webclient URL too long?

I'm using this VB.Net WebClient code to send a request to GeometryServer: /ArcGIS/rest/services/Geometry/GeometryServer/labelPoints My only access to the data is via REST. Try Dim ...
1
vote
0answers
56 views

WebClient redirect to response page after POST of form

I'm having some trouble trying to POST some form values to a page + redirect the user. For example: User clicks register button Some form values are populated WebClient POSTS these values and ...
0
votes
1answer
64 views

uploading image to the web service using WebClient

getting problem in uploading an image to the web service using web client, my code is---> Uri uri = new Uri("http://localhost/Test/SaveImage"); string imageData = ...
0
votes
0answers
44 views

What to do if the server refuse my connection?

WebClient oClient = new WebClient(); Stream oStream = oClient.OpenRead("http://finance.yahoo.com/d/result?f=c4l1&s=EURNOK=X"); StreamReader oReader = new StreamReader(oStream); String sResult = ...

1 2 3 4 5 27