473,807 Members | 2,857 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

webclient.downl oadfile

mk
Hi,
I am trying to download a file from a remote webserver. I create the
following:

string username="remot eusername";
string password="remot epassword";
string URI="http://remote.target.s erver/getdocument.asp ?ID=sometest.pd f";

NetworkCredenti al nc = new NetworkCredenti al(username, password);
WebRequest req = WebRequest.Crea te(URI);
req.Credentials = nc;
WebResponse resp = req.GetResponse ();
using(FileStrea m fsb = new FileStream(file name, FileMode.Create New))
{
BinaryWriter bw = new BinaryWriter(fs b);
Byte[] read = new Byte[1024];
int bytes = resp.GetRespons eStream().Read( read, 0, 1024);
...
// Carry on and stream the bytes to a local file


If I set the URI to a file in a directory on my localhost webserver (and
change the username and password) this works a treat. When I try to download
the remote file, I get 403 - Access forbidden. Unfortunately if a just enter
the URI into IE, I can view the file on screen. So I know I have permission,
I know the file exists, and I know the code works coz it works for the local
file.
Can anyone tell me where I'm going wrong?

Thanks,

Martin
Nov 16 '05 #1
1 4707
I'd recommend 2 things:

1) Read the whole message returned by the webserver, i.e. catch the
WebException that is thrown during the call to GetResponse, and use
the Response property of the WebException to get the whole answer.
The web server may actually be kind enough to provide information.
Here's a quickly hacked example:

try
{
WebResponse resp = req.GetResponse ();
}
catch (WebException e)
{
Stream respStream = e.Response.GetR esponseStream() ;
byte[] buffer = new byte[8192];
int amt = respStream.Read (buffer, 0, buffer.Length);
Console.Write(E ncoding.ASCII.G etString(buffer , 0, amt));
return;
}

2) Use the information obtained from 1). It might be as simple as

req.CookieConta iner = new CookieContainer ();

Happy hunting,
Ras

"mk" <mk@discussions .microsoft.com> wrote in message news:<C6******* *************** ************@mi crosoft.com>...
Hi,
I am trying to download a file from a remote webserver. I create the
following:

string username="remot eusername";
string password="remot epassword";
string URI="http://remote.target.s erver/getdocument.asp ?ID=sometest.pd f";

NetworkCredenti al nc = new NetworkCredenti al(username, password);
WebRequest req = WebRequest.Crea te(URI);
req.Credentials = nc;
WebResponse resp = req.GetResponse ();
using(FileStrea m fsb = new FileStream(file name, FileMode.Create New))
{
BinaryWriter bw = new BinaryWriter(fs b);
Byte[] read = new Byte[1024];
int bytes = resp.GetRespons eStream().Read( read, 0, 1024);
...
// Carry on and stream the bytes to a local file


If I set the URI to a file in a directory on my localhost webserver (and
change the username and password) this works a treat. When I try to download
the remote file, I get 403 - Access forbidden. Unfortunately if a just enter
the URI into IE, I can view the file on screen. So I know I have permission,
I know the file exists, and I know the code works coz it works for the local
file.
Can anyone tell me where I'm going wrong?

Thanks,

Martin

Nov 16 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
4277
by: James Write | last post by:
Hi, I am using the webclient.downloadfile() method to download a file from a remote web server to the local harddrive. public CopyFile(string sSrcPath, string sDestPath) { WebClient oClient = new WebClient(); oClient.DownloadFile(sSrcPath,sDestPath); }
6
13305
by: A.M-SG | last post by:
Hi, I have an aspx page at the web server that provides PDF documents for smart client applications. Here is the code in aspx page that defines content type: Response.ContentType = "application/octet-stream"; Response.AppendHeader("Content-Disposition", "attachment;filename=" + fileID.ToString() + ".pdf");
1
4805
by: Cheri Elkin | last post by:
I recieve the following error when attempting to download a file from our web server to be placed on our hard drive. Any clues as to why I would get this error? By the way, the directory already exists on the hard drive ("c"). System.Net.WebException: An exception occurred during a WebClient request. ---> System.IO.DirectoryNotFoundException: Could not find a part of the path "C:\Essex\Download\POLEXPT1.DT1". at...
8
9038
by: DEWright_CA | last post by:
Why does WebClient.DownloadFile loose my completed path? Ok, I have a function in my app then when my button is clicked it checks to see if the files come from a local drive or a http address. The portion of the code that pulls from the drive works great, but when the http address is active it changes the originating path to my C:\Windows\System32 folder instead of the proper path. I keep the path as a field on my form so I am certain...
1
2933
by: peter.rietmann | last post by:
I have been suddenly having a performance problem downloading images from one server (productive) to another (productive) using the following code .. WebClient webClient = new WebClient(); try { webClient.DownloadFile(sourceUrlFilename, destinationFilename); } catch (Exception ex)
2
3258
by: Lila Godel | last post by:
I am having a problem with the download of web pages via the WebClient.DownloadFile function in the specialized VB.Net 2003 I.E. plug-in I am designing to speed up the work on my latest project. When I edit the web pages in notepad I see a square wherever I normally see a carriage return and a line feed when viewing the source in I.E. How can I make the web pages come down readable so I can easily make my two manual deletions...
1
4782
by: David Satz | last post by:
Hello--I just upgraded to Visual Studio .NET 2005 and suddenly, all my .NET 1.1 applications that accessed Web sites have broken. For example, this code: WebClient wc = new WebClient(); wc.DownloadFile("http://www.microsoft.com/", "MSFT.htm"); .... throws a WebException on the second line. The WebException doesn't specify a problem, but it has an InnerException of type NullReferenceException with the following stack trace:
1
6293
by: vin.dor | last post by:
Dear All, I am using WebClient in my Visual Studio .Net 2003 project to download an image from the Internet. The following is my function: C# Code: public static bool downloadFile(string URL, ref string fileName) { bool result = true;
4
14290
by: gavkel | last post by:
Can anyone get this to work? All Im getting is the login html being downloaded. Would appreciate any help - my heads hurts Thanks Gav
8
9531
by: =?Utf-8?B?UnVpIE9saXZlaXJh?= | last post by:
WebClient.DownloadFile I am using the WebClient.DownloadFile function to download a file from server to a local client. When I execute the below code, file is created in server and not in client. What am I doing wrong?
0
9720
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10626
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10372
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7650
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6879
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5546
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5685
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4330
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3011
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.