Click here to Skip to main content
Licence 
First Posted 8 Mar 2005
Views 75,371
Bookmarked 48 times

How to transfer files from one webserver to another webserver

By | 8 Mar 2005 | Article
An article which describes how to transfer files from one webserver to another webserver.

Screen Shot of Download file screen

Introduction

This article describes about a common requirement of transferring files from one web server to another web server.

Background

When I was working in some project, there was a requirement where I had a web application (http://someserver/someapplication) from where I had to transfer the files to another web server (http://www.someotherserver/someotherapplication). So, I thought why should not I share the same with you all.

Using the code

Download the WebRequest project and WebRequestReceiver project. Install it in a convenient location, e.g.: c:\inetpub\wwwroot. The ZIP file contains both projects.

This article has two projects:

  1. A main project which contains the code to upload/download files.
    1. To transfer/upload a file from one webserver to another webserver (frmUploadFile.aspx).
    2. To retrieve/download a file from the other webserver to the location machine (frmDownloadFile.aspx).
  2. A Web Request Receiver project which will save the files that are posted to it.

The application makes use of the WebClient class provided in the .NET framework.

//
// For uploading the file
//
try
{ 
    WebClient oclient = new WebClient(); 
    byte[] responseArray = 
       oclient.UploadFile(txtURLToSend.Text,"POST",txtFileToSend.Text); 
    lblStatus.Text = 
       "Check the file at " + Encoding.ASCII.GetString(responseArray); 
} 
catch (Exception ex) 
{ 
    lblStatus.Text = ex.Message;
}

//
// For downloading the file
//
try
{
    WebClient oclient = new WebClient();
    oclient.DownloadFile(txtURL.Text,txtFileLocation.Text);
    lblStatus.Text = "Check the file at " + txtFileLocation.Text;
}
catch (Exception ex)
{
    lblStatus.Text = ex.Message;
}

When I say uploading the file from one web server to another web server, it basically posts the file from one web server to another web server like the way a file from the client side is posted when you use <input type="file">.

Points of Interest

This example is useful in places where you have to post files from one web server to another web server.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Devakumar Sai Chinthala

Founder
Articledean.com & conveygreetings.com
United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionThe underlying connection was closed: An unexpected error occurred on a receive. PinmemberRajaSrirangan2:48 4 Oct '11  
GeneralMy vote of 1 Pinmemberharsh07341:11 16 Jun '10  
QuestionHow to transfer Databse from offline server into online Server Pinmemberrprabu4:22 4 Sep '07  
I have a MS-Sql Server 2005 Database Records in Offline Server i want to transfer the database Records into Online Server how to solve this problem
 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

AnswerRe: How to transfer Databse from offline server into online Server [modified] PinmemberVerma Ankit2:20 2 Apr '10  
Questioni got error in this Pinmembermisterrind19:27 9 Apr '07  
Generalfile transfering between client server Pinmemberwafa234190:01 12 Mar '07  
GeneralPlease Help PinmemberLinda dsouza23:33 9 Jul '06  
QuestionGot 500 internal error ocured PinmemberVipul3:54 17 Apr '06  
QuestionHow can i use it in asp Pinmemberbutterfly10119:41 2 Jan '06  
GeneralThank You!!! Pinmemberpunitkshah0:26 24 Nov '05  
GeneralRe: Thank You!!! PinmemberDRKARTHIKRAJ20:10 22 May '12  
GeneralAre only doc files allowed Pinmemberpunitkshah21:21 23 Nov '05  
GeneralHelp!!! Pinmemberpunitkshah20:07 23 Nov '05  
Questionhow can i transfer files from one server to other server directly? Pinmembernju760:15 8 Sep '05  
GeneralDont repost Pinmemberleppie23:38 8 Mar '05  
GeneralAttempt failed to Upload PinmemberKishore P. Krishna21:22 19 Jul '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 9 Mar 2005
Article Copyright 2005 by Devakumar Sai Chinthala
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid