Click here to Skip to main content
15,881,248 members
Articles / Desktop Programming / WPF

WCF Large File Download Upload Service

Rate me:
Please Sign up or sign in to vote.
2.89/5 (23 votes)
26 Jun 2009CPOL3 min read 139.6K   9.5K   43   25
A WCF document mangement service for downloading and uploading large files, hosted on a Windows Service.

Introduction

Any LOB application requires document attachment facility; the user will demand to attach documents with records (i.e., scanned copies of sales invoices, purchase invoices etc.). So, it is required to provide a common facility to upload and download documents. Here I am providing an implementation of a TCP binding WCF service which is hosted in Windows Services. This service can be invoked by any WPF / WinForms based client application.

I will divide the solution in four parts:

  1. Interface Creation
  2. Service Creation
  3. Hosting Service (Windows Services)
  4. Consuming (Client)

Interface Creation

This is just a simple interface with two methods; first, it is required to reference and import the "System.ServiceModel" assembly. Here, I am creating a different project for the interface as we can use the same DLL in the service class as well as the client.

C#
[ServiceContract]
public interface IDocumentLibraryService
{
    [OperationContract]
    void UploadDocument(string fPath, byte[] data);
 
    [OperationContract]
    byte[] DownloadDocument(string fPath);
}

Service Creation

As we are creating a WCF service, it is required to add a reference to the interface "IDocumentLibraryService". So, after adding the reference, I have inherited the DocumentLibraryService class from that interface and implemented both the methods.

Upload Document

The code to process the incoming stream is rather simple; storing the uploaded files to a single folder on the disk and overwriting any existing files.

Download Document

Open the file, convert its contents into a byte array, and return it to the calling process /client.

C#
public class DocumentLibraryService : IDocumentLibraryService.IDocumentLibraryService 
{
   public void UploadDocument(string fPath, byte[] data)
   {
      string filePath = fPath;
      FileStream fs = new FileStream(filePath, FileMode.Create, 
                                     FileAccess.Write);
      fs.Write(data, 0, data.Length);
      fs.Close();
   }   
   public byte[] DownloadDocument(string fPath)
   {
      string filePath = fPath;
      // read the file and return the byte[
      using (FileStream fs = new FileStream(filePath, FileMode.Open, 
                                 FileAccess.Read, FileShare.Read))
      {
          byte[] buffer = new byte[fs.Length];
          fs.Read(buffer, 0, (int)fs.Length);
          return buffer;
      }
   }
}

Hosting Service

Create a Windows Service project (optionally, you can also host your service in a normal WinForms or WPF application), add the above created service class, and open the channel in the OnStart method of the Windows Service. Close the channel in the OnStop method. Here, I set the number of binding properties before opening the channel to make sure it works in the case of large files too. Timeout property settings are required because if the client takes longer to upload a file it does not come up with a timeout exception.

To be honest, I have not played with these settings very much yet, so you will probably want to tweak these to your own situations. After setting up all the properties, I add the endpoint to the service. I have selected the port 8000; in your case, you can select any.

Finally, the server is waiting for any client to create the channel at port no. 8000.

Note: If you have installed any firewall, anti virus, Windows firewall etc., then please make the exception entry into it for your selected port. Also, the created Windows Service must have the security rights to access the specified folder or location on the disk.

To know more about how to create a Windows Service:

C#
protected override void OnStart(string[] args)
{
    // TODO: Add code here to start your service.
    StartWCFService();
}

void StartWCFService()
{
    try
    {
        NetTcpBinding ntcp = new NetTcpBinding();
  
        ntcp.MaxBufferPoolSize = 2147483647;
        ntcp.MaxReceivedMessageSize = 2147483647;
        ntcp.MaxBufferSize = 2147483647;
        ntcp.ReaderQuotas.MaxStringContentLength = 2147483647;
        ntcp.ReaderQuotas.MaxDepth = 2147483647;
        ntcp.ReaderQuotas.MaxBytesPerRead = 2147483647;
        ntcp.ReaderQuotas.MaxNameTableCharCount = 2147483647;
        ntcp.ReaderQuotas.MaxArrayLength = 2147483647;
        ntcp.SendTimeout = new TimeSpan(1, 10, 0);
        ntcp.ReceiveTimeout = new TimeSpan(1, 10, 0);
        //ntcp.OpenTimeout
        //ntcp.CloseTimeout
 
        svh = new ServiceHost(typeof(DocumentLibraryService));
        ((ServiceBehaviorAttribute)
           svh.Description.Behaviors[0]).MaxItemsInObjectGraph = 2147483647;
        svh.AddServiceEndpoint(
                    typeof(IDocumentLibraryService.IDocumentLibraryService),
                    ntcp,
                    "net.tcp://localhost:8000");
        svh.Open();
    }
    catch (Exception e)
    {
        Trace.WriteLine(e.Message);
    }
}

Consuming (Client)

Here, firstly, I have to add a reference to our interface DLL. After that, I have created a channel between the client and the service after setting up all the properties for the binding.

C#
ChannelFactory<IDocumentLibraryService.IDocumentLibraryService> scf;
scf = new ChannelFactory<IDocumentLibraryService.IDocumentLibraryService>(ntcp, 
                                        "net.tcp://localhost:8000");
IDocumentLibraryService.IDocumentLibraryService client;
client = scf.CreateChannel();
  • Download: After calling the downloaddocument function with the required parameters, it is required to save the downloaded document to a user defined location.
  • Upload: Here, first, we will ask the user for the file path to upload a document, and after converting that document into a byte array, we will pass it to the uploaddocument function.

Conclusion

As you can see, it is very easy to create a document download / upload WCF service which can be used across multiple applications. I have not created the UI for the client, i.e., the one for asking the user for the file name to upload or download etc..

Please provide your valuable suggestions / criticisms / feedback.

License

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


Written By
Team Leader Phoenix Tech Labs
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 2 Pin
leiyangge19-Aug-14 4:29
leiyangge19-Aug-14 4:29 
GeneralMy vote of 5 Pin
v green15-Oct-12 6:02
v green15-Oct-12 6:02 
QuestionQuestion Pin
varun surana18-Oct-11 1:26
varun surana18-Oct-11 1:26 
GeneralMy vote of 2 Pin
.Shoaib9-Aug-11 3:55
.Shoaib9-Aug-11 3:55 
GeneralMy vote of 1 Pin
rageit13-Jun-11 10:24
rageit13-Jun-11 10:24 
GeneralMy vote of 1 Pin
vrsanaidu29-Jun-10 23:43
vrsanaidu29-Jun-10 23:43 
GeneralMy vote of 1 Pin
Member 317768417-Jan-10 13:58
Member 317768417-Jan-10 13:58 
GeneralMy vote of 1 Pin
JO Hyeong-Ryeol8-Dec-09 21:29
JO Hyeong-Ryeol8-Dec-09 21:29 
It's not prepared large file
GeneralMy vote of 1 Pin
NightDorian6-Aug-09 4:16
NightDorian6-Aug-09 4:16 
GeneralLarge video files upload (file size over 10 gb) Pin
Sharmistha Sen16-Jul-09 3:22
Sharmistha Sen16-Jul-09 3:22 
GeneralMy vote of 1 Pin
Anderson Imes7-Jul-09 5:26
Anderson Imes7-Jul-09 5:26 
GeneralWCF Streaming Pin
Anderson Imes7-Jul-09 5:25
Anderson Imes7-Jul-09 5:25 
GeneralMy vote of 1 Pin
JaredFox30-Jun-09 10:52
JaredFox30-Jun-09 10:52 
GeneralMy vote of 2 Pin
WillemToerien29-Jun-09 2:54
WillemToerien29-Jun-09 2:54 
GeneralNot a good idea Pin
WillemToerien29-Jun-09 2:53
WillemToerien29-Jun-09 2:53 
GeneralMy vote of 2 Pin
rcardare27-Jun-09 2:44
rcardare27-Jun-09 2:44 
GeneralMy vote of 1 Pin
Bad code hunter26-Jun-09 4:01
Bad code hunter26-Jun-09 4:01 
GeneralRe: My vote of 1 Pin
HarishBhattbhatt26-Jun-09 4:16
HarishBhattbhatt26-Jun-09 4:16 
GeneralRe: My vote of 1 Pin
dchrno26-Jun-09 4:52
dchrno26-Jun-09 4:52 
GeneralRe: My vote of 1 Pin
HarishBhattbhatt26-Jun-09 21:35
HarishBhattbhatt26-Jun-09 21:35 
GeneralRe: My vote of 1 Pin
Daniel Cazzulino [XML MVP]21-Feb-10 10:26
Daniel Cazzulino [XML MVP]21-Feb-10 10:26 
GeneralRe: My vote of 1 Pin
Druuler26-Jun-09 7:45
Druuler26-Jun-09 7:45 
GeneralRe: My vote of 1 Pin
Guillaume Leparmentier26-Jun-09 19:44
Guillaume Leparmentier26-Jun-09 19:44 
Generalquestion Pin
nørdic26-Jun-09 3:18
nørdic26-Jun-09 3:18 
GeneralRe: question Pin
HarishBhattbhatt26-Jun-09 21:42
HarishBhattbhatt26-Jun-09 21:42 

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.