Click here to Skip to main content
15,881,089 members
Articles / Programming Languages / C#

Uploading Large Files Through Web Service

Rate me:
Please Sign up or sign in to vote.
4.74/5 (19 votes)
25 Oct 2009CPOL 127.1K   41   25
Uploading large files through web service method that will accept chunks of bytes

Introduction

In this article, I am going to explain how to upload large files using web service method. We will not need to change anything in IIS or web.config (maximum request size) developed in Visual Studio 2008.

Using the Code

I have created a web method to accept file name, bytes (array) and offset. Here is the function.

C#
/// <summary>
/// This function is used to append chunk of bytes to a file name. 
/// If the offset starts from 0 means file name should be created.
/// </summary>
/// <param name="FileName">File Name</param>
/// <param name="buffer">Buffer array</param>
/// <param name="Offset">Offset</param>
/// <returns>boolean: true means append is successfully</returns>
[WebMethod]
public bool UploadFile(string FileName, byte[] buffer, long Offset)
{
bool retVal = false;
try
{
// setting the file location to be saved in the server. 
// reading from the web.config file 
string FilePath = 
	Path.Combine(ConfigurationManager.AppSettings["upload_path"], FileName);

if (Offset == 0) // new file, create an empty file
File.Create(FilePath).Close();
// open a file stream and write the buffer. 
// Don't open with FileMode.Append because the transfer may wish to 
// start a different point
using (FileStream fs = new FileStream(FilePath, FileMode.Open, 
	FileAccess.ReadWrite, FileShare.Read))
{
fs.Seek(Offset, SeekOrigin.Begin);
fs.Write(buffer, 0, buffer.Length);
}
retVal = true;
}
catch (Exception ex)
{
//sending error to an email id
common.SendError(ex);
}
return retVal;
}

In the function, I am setting the file location to be saved in the server. I have put it in a appSetting section in the web.config file.

XML
<add key="upload_path" value="d:\files\"></add>

How to Consume the Web Method

I have created a Windows application (C#). I have put a button. On the button click, I have put the following code:

C#
//the file that we want to upload
string FilePath="d:\somefile.pdf";
int Offset = 0; // starting offset.

//define the chunk size
int ChunkSize = 65536; // 64 * 1024 kb

//define the buffer array according to the chunksize.
byte[] Buffer = new byte[ChunkSize];
//opening the file for read.
FileStream fs = new FileStream(FilePath, FileMode.Open, FileAccess.Read);
//creating the ServiceSoapClient which will allow to connect to the service.
WSservice.ServiceSoapClient soap_client = new WSservice.ServiceSoapClient();
try
{
long FileSize = new FileInfo(FilePath).Length; // File size of file being uploaded.
// reading the file.
fs.Position = Offset;
int BytesRead = 0;
while (Offset != FileSize) // continue uploading the file chunks until offset = file size.
{
BytesRead = fs.Read(Buffer, 0, ChunkSize); // read the next chunk 
	// (if it exists) into the buffer. 
	// the while loop will terminate if there is nothing left to read
// check if this is the last chunk and resize the buffer as needed 
// to avoid sending a mostly empty buffer 
// (could be 10Mb of 000000000000s in a large chunk)
if (BytesRead != Buffer.Length)
{
ChunkSize = BytesRead;
byte[] TrimmedBuffer = new byte[BytesRead];
Array.Copy(Buffer, TrimmedBuffer, BytesRead);
Buffer = TrimmedBuffer; // the trimmed buffer should become the new 'buffer'
}
// send this chunk to the server. it is sent as a byte[] parameter, 
// but the client and server have been configured to encode byte[] using MTOM. 
bool ChunkAppened = soap_client.UploadFile(Path.GetFileName(FilePath), Buffer, Offset);
if (!ChunkAppened)
{
break;
}

// Offset is only updated AFTER a successful send of the bytes. 
Offset += BytesRead; // save the offset position for resume
}
}
catch (Exception ex)
{
}
finally
{
fs.Close();
}

History

  • 25th October, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Gulf air - Bahrain
Bahrain Bahrain
Current Position is : Sr. Information System Analyst

Leading a Team of Developers for developing ecommerce websites and systems integration using several integration methods such as XML.

Manage ISP infrastructure, web servers, database servers, application servers, email servers and networks. Design the architecture of complex web applications; build web applications in JAVA, asp, asp.Net; manage web sites including networking and database; experienced in MS Sql Server and Oracle;

stay current with emerging trends and technological advances in the industry.

MCTS,MCAD VB.NET, ASP.NET and XML Services,BTEC National Diploma in Computer Studies.

Comments and Discussions

 
PraiseMy 5 STARS Pin
Santosh Kokatnur30-May-16 4:16
Santosh Kokatnur30-May-16 4:16 
PraiseMy 5***** Pin
Santosh Kokatnur30-May-16 4:16
Santosh Kokatnur30-May-16 4:16 
QuestionCan this code be modified somehow to incorporate Asynchronous Programming? Pin
AyuKash1-Jun-15 22:20
AyuKash1-Jun-15 22:20 
QuestionAbsolutely fantastic !!! Pin
don_nell22-Jun-13 14:27
don_nell22-Jun-13 14:27 
QuestionMy vote of 5 Pin
George Serbanescu18-Mar-13 1:19
George Serbanescu18-Mar-13 1:19 
GeneralMy vote of 4 Pin
Pallenov6-Feb-13 9:58
professionalPallenov6-Feb-13 9:58 
QuestionDeployment of solution Pin
Laurentiu LAZAR4-Dec-12 23:22
Laurentiu LAZAR4-Dec-12 23:22 
Hi,

I tested a solution based on the article. The solution consist obvious in two projects:
an web service and
a web application that consume the service.
When I debug from Visual Studio al is OK and the file is uploaded. But when I deploy on an internal staging server, the web service seems to do nothing (it does not throw errors, or I don't know how to catch them in web app an display them, but the file is not uploaded).
More of this, this not clear to me how to implement this in a way that upload a file from my client computer (e.g. my develop notebook) to the server. My perception is that it uploads a file from the machine where the web app and web server resides (e.g. the staging server).
On short, I need to programmatically upload a file from folder c:\source_folder\ from my notebook to c:\destination_folder on my server

thanks
Questionregarding namespace to be included Pin
vijayalaya7-Nov-12 20:39
vijayalaya7-Nov-12 20:39 
GeneralMy vote of 4 Pin
Pr!y@21-Oct-12 11:35
Pr!y@21-Oct-12 11:35 
QuestionAn attempt was made to move the file pointer before the beginning of the file Pin
tungkhac10-Oct-12 23:15
tungkhac10-Oct-12 23:15 
AnswerRe: An attempt was made to move the file pointer before the beginning of the file Pin
don_nell22-Jun-13 14:35
don_nell22-Jun-13 14:35 
QuestionReg. Upload files which are of 10 GB Pin
Erukulla vijay18-Dec-11 18:36
Erukulla vijay18-Dec-11 18:36 
GeneralMy vote of 5 Pin
Luiz Carvalho13-Dec-11 18:13
Luiz Carvalho13-Dec-11 18:13 
GeneralMy vote of 4 Pin
Ramanjaneyulu Kondaru8-Nov-11 1:16
Ramanjaneyulu Kondaru8-Nov-11 1:16 
GeneralGreat! Pin
Kantabriko17-Nov-10 14:25
Kantabriko17-Nov-10 14:25 
QuestionCould you post a sample project? Pin
Rui Frazao16-Jun-10 23:39
Rui Frazao16-Jun-10 23:39 
GeneralHi Pin
Ravenet27-Oct-09 15:06
Ravenet27-Oct-09 15:06 
GeneralRe: Hi Pin
hussain.attiya27-Oct-09 19:31
hussain.attiya27-Oct-09 19:31 
GeneralRe: Hi Pin
Ravenet28-Oct-09 3:48
Ravenet28-Oct-09 3:48 
GeneralRe: Hi Pin
Ravenet28-Oct-09 3:53
Ravenet28-Oct-09 3:53 
GeneralMy vote of 1 Pin
Not Active26-Oct-09 5:43
mentorNot Active26-Oct-09 5:43 
GeneralRe: My vote of 1 Pin
hussain.attiya26-Oct-09 23:14
hussain.attiya26-Oct-09 23:14 
AnswerWeb services are converting bytes array to 64 base Pin
ErezAlster25-Oct-09 4:22
ErezAlster25-Oct-09 4:22 

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

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