Click here to Skip to main content
Click here to Skip to main content

SharpBITS.NET - A Wrapper for the BITS API

By , 7 Oct 2010
 

Sharpbits.NET - Winforms application based on the wrapper library

Introduction

SharpBITS is a library to wrap the BITS SDK for use with managed code on the .NET platform. It was intended and first implemented for a project designed to transfer large files over a slow and unstable WAN link. While there are some other options like use of FTP, BITS had some real advantages that made it the favorite selection.

As it uses the HTTP/HTTPS protocol to transfer files, it is immune to firewall restrictions. Also, it keeps a session (in default setting) for up to 14 days, which gives a reliable file transfer option in this case! The project where SharpBITS was developed consists of a small command line application, and the separate BITS wrapper library. Even if there are some custom implementations for the BITS wrapper available already, also for .NET managed code (see "Wrapping Bits" on MSDN), they are based on older versions of BITS and don't support some features like authentication, so the decision was to have a new C# based wrapper library.

Background

Background Intelligent Transfer Service (BITS) can be used to transfer (large) files asynchronously between a client and a server. Background transfers are optimal in that BITS uses idle network bandwidth to transfer the files, and can increase or decrease the rate at which files are transferred based on the amount of idle network bandwidth available. If a network application begins to consume more bandwidth, BITS decreases its transfer rate to preserve the user's interactive experience. BITS continues to transfer files after an application exits if the user who initiated the transfer remains logged on and a network connection is maintained. BITS suspends the transfer if a connection is lost or if the user logs off. BITS persists transfer information while the user is logged off, across network disconnects, and during computer restarts.

The complete description and documentation on BITS can be found on MSDN.

Requirements

For using BITS, the following requirements must be met:

Client

On the client side, Windows 2000 SP3 or later is required and the BITS service must be running. BITS is also supported on Windows Vista and Longhorn Server (with upcoming new features like P2P-functionality).

Windows 95/98/ME/NT are not supported.

Server

For uploads, BITS requires IIS 5.0 on Windows 2000 Server, and IIS 6.0 on Windows Server 2003 family; BITS does not support IIS 5.1 on Windows XP.

Using the code

All you have to do for getting started with SharpBITS is to create an instance of BitsManager. BitsManager is the single instance giving access to create a new job or list existing jobs.

To create a new job, the code looks as simple as that:

BitsManager manager = new BitsManager();
manager.EnumJobs(JobOwner.CurrentUser);

// populate current job list first
BitsJob job = manager.CreateJob("TestJob", JobType.Download);
job.AddFile("http://localhost/bits/mydownload.cab", "C:\\temp\\download.cab");
job.Resume();

Also, it is very simple to iterate through all existing jobs and list their properties. Each job has various properties like name, owner, priority, and of course, a list of files to transfer. (While a download job can have multiple files to transfer, an upload job is restricted to one file per job!)

manager.EnumJobs(JobOwner.CurrentUser);     
// list either all jobs or for current user only
System.Console.WriteLine("Job Count for current user: {0}", 
                manager.Jobs.Count.ToString());
foreach (BitsJob job in manager.Jobs.Values)
{
    System.Console.WriteLine("Displayname for job: {0}", job.DisplayName);
    System.Console.WriteLine("Owner: {0}", job.Owner);
    System.Console.WriteLine("Priority: {0}", job.Priority.ToString());
    job.EnumFiles();
    System.Console.WriteLine("File Count for current job: {0}", 
                    job.Files.Count.ToString());
    foreach (BitsFile file in job.Files)
    {
        System.Console.WriteLine("Local File Name: {0}", file.LocalName);
        System.Console.WriteLine("Remote File Name: {0}", file.RemoteName);
        System.Console.WriteLine("Bytes total: {0}", 
            file.Progress.BytesTotal.ToString());
        System.Console.WriteLine("Bytes transfered: {0}", 
            file.Progress.BytesTransferred.ToString());
    }
    System.Console.WriteLine("Job State: {0}", job.State.ToString());
    System.Console.WriteLine("Job Type: {0}", job.JobType.ToString());
}

Instead of polling for the status of a job all the time, BITS enables to set a callback pointer for the notification interface. In SharpBITS, this callback handling is wrapped to .NET events. There are three different kinds of events, raised if job is modified, completed, or if an error has occurred. The JobModifiedEvent event will also be fired if the JobProgress or FileProgress for a job is updated, so this can be used to display a job progress.

Event handlers can be attached to either a job to get events for that particular job only, or to the BitsManager to catch all events. Even for those, you have to set the kind of events fired for each particular job.

//Set flags to get notified on Job Completed or Job Error event
job.NotificationFlags = 
    NotificationFlags.JobTransferred | NotificationFlags.JobErrorOccured;
//never raised with the previous flags
job.OnJobModifiedEvent += 
    new EventHandler<JOBNOTIFICATIONEVENTARGS>(job_OnJobModifiedEvent);

Credits

The interop handling in this library is based on some implementations from the "Microsoft Updater Application Block for .NET" (http://msdn2.microsoft.com/en-us/library/ms978574.aspx), which is part of the Enterprise Library.

Conclusion

As it seems, BITS can be used to fulfill various requirements for transferring files in a reliable manner, and is somewhat underestimated currently. I started to develop a Windows Forms application also (where the above screenshot was taken from). This application development is still in progress, but a running version and more details (source code as well) can be found on the SharpBITS.NET homepage.

History

  • 07/09/2006: Posted to CodeProject.
  • 10/10/2006: Update posted to CodeProject.

License

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

About the Author

xidar
Svalbard And Jan Mayen Svalbard And Jan Mayen
Member
No Biography provided

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

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionUsing like a servicememberErikIce5 Sep '11 - 6:39 
GeneralGreat wrapper and awesome supportmemberStonkie10 Mar '11 - 10:14 
QuestionHow to upload file using credential in SharpBITS [modified]memberjep1tz4 Oct '10 - 19:01 
AnswerRe: How to upload file using credential in SharpBITSmemberxidar4 Oct '10 - 19:04 
GeneralRe: How to upload file using credential in SharpBITSmemberjep1tz4 Oct '10 - 22:22 
GeneralWindows 7 x64 and VS2010 Debugger hang / program crashmembermikey2229 Jun '10 - 13:20 
GeneralError when trying to user AddFile methodmemberMember 23755779 Apr '10 - 13:59 
QuestionNew homepage for Sharpbits?memberBBiales3 Mar '09 - 6:49 
QuestionHow to 'Delete after upload complete'membermikecarr30 Jan '09 - 19:13 
Questioncom visible?memberb002177521 Nov '08 - 2:59 
AnswerRe: com visible?memberxidar24 Nov '08 - 4:33 
QuestionUrgent: use sharp bits in windows servicememberMavei3 Nov '08 - 19:41 
AnswerRe: Urgent: use sharp bits in windows servicememberxidar3 Nov '08 - 22:23 
GeneralRe: Urgent: use sharp bits in windows servicememberMavei3 Nov '08 - 23:20 
GeneralRe: Urgent: use sharp bits in windows servicememberBBiales3 Mar '09 - 6:32 
QuestionHow Upload?memberrbarzallo31 Oct '08 - 13:47 
AnswerRe: How Upload?memberxidar3 Nov '08 - 22:24 
QuestionGet Job ID from OnJobCompleted?memberNiteBeast18 Sep '08 - 12:48 
AnswerRe: Get Job ID from OnJobCompleted?memberxidar18 Sep '08 - 20:38 
QuestionRe: Get Job ID from OnJobCompleted? [modified]memberNiteBeast19 Sep '08 - 4:45 
QuestionResume download from web client.memberdotnetgoodman17 Jun '08 - 2:18 
AnswerRe: Resume download from web client.memberxidar17 Jun '08 - 4:09 
GeneralBITS Server configurationmemberVincent DUVERNET (Nolmë Informatique)20 May '08 - 12:40 
Generalworking with bits over web application [modified]membercmartinez34521 Nov '07 - 11:51 
QuestionRe: working with bits over web applicationmemberxidar3 Dec '07 - 13:02 
QuestionWrong LocalNamemembermsaponaro20 Sep '07 - 2:51 
AnswerRe: Wrong LocalNamememberxidar20 Sep '07 - 4:10 
GeneralError while adding files for concurrent download. [modified]memberSach7423 Nov '06 - 19:36 
GeneralRe: Error while adding files for concurrent download.memberxidar26 Nov '06 - 9:11 
QuestionAny idea on how to implement this on web application?memberKhinLLK12 Nov '06 - 16:36 
AnswerRe: Any idea on how to implement this on web application?memberxidar13 Nov '06 - 8:15 
GeneralRe: Any idea on how to implement this on web application?memberKhinLLK13 Nov '06 - 14:40 
GeneralRe: Any idea on how to implement this on web application?memberxidar26 Nov '06 - 9:13 
QuestionRe: Any idea on how to implement this on web application?memberPadmaja B18 Sep '07 - 11:31 
AnswerRe: Any idea on how to implement this on web application?memberxidar18 Sep '07 - 22:36 
QuestionStable for file larger than 500MB?memberDave Lenz11 Oct '06 - 20:43 
AnswerRe: Stable for file larger than 500MB?memberxidar12 Oct '06 - 3:01 
GeneralNice onememberBo B18 Jul '06 - 22:09 
GeneralUImemberDomenic11 Jul '06 - 3:56 
GeneralRe: UImemberxidar11 Jul '06 - 18:47 
GeneralRe: UImemberVincent DUVERNET (Nolmë Informatique)19 May '08 - 11:14 
GeneralRe: UImemberxidar19 May '08 - 11:23 
GeneralRe: UImemberNevering2 Nov '06 - 11:46 
GeneralProxy and Server NTLM Authenticationmemberandrear10 Jul '06 - 0:31 
GeneralRe: Proxy and Server NTLM Authenticationmemberxidar10 Jul '06 - 1:10 

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 7 Oct 2010
Article Copyright 2006 by xidar
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid