GIGJ.COM
welcome to my space
X
Personal Injury | Languages | Soups | Photography | Email | Prepress | Exotic Locations | Computer Games | Related articles
Welcome to:gigj.com
Search:  
NAVIGATION: Home >>
What the HELL is Microsoft BITS 6.6?
Published by: mike 2009-01-07
  • Hey gang;
    This one is directed right at the techies...

    For the last 4 weeks or so, I have consistently noticed the following referral in my Libsyn stats, under download referrals:

    Other Clients: 2880

    NSPlayer/8.9 WMPMac/8.9.0.3307 (3)
    CFNetwork/1.1 (4)
    Wget/1.8.2 (4)
    CoralWebPrx/0.1.12 (9)
    Wget/1.9.1 (9)
    NSPlayer/7.0 WMPMac/7.1.3.0267 (1)
    IDA (1)
    Microsoft BITS/6.6 (2813)


    That BITS number is roughly twice as high as my subscriptions.

    All I know about it is that it's used in Windows Update. And I don't notice any Internet Explorer referrals. So, is this a legit #? Is it a client? Or just IE?

    If anyone can offer any knowledge here, I would greatly appreciate. Even the Libsyn guys are stumped...


  • http://www.nuparadigm.com/Products/Toys/DrizzleCast/

    google is fun!

    insomnia, is it giving you so many hits because it starts and stops and maybe that's counting as a hit?


  • I'd love my podcasting client to be able to simply recognize when I've been idle and only start downloading then.

    Huh? I don't follow............

    I should have said, "when I am idle"

    What I mean is right now I have it scheduled to download at a certain time. But I'd rather have it download whenever I'm away from the computer aka "idle".
  • Fun_People Archive 1995::
    31 Oct -:- New M$HTML Extensions (or Why Microsoft is Stupid 8 Nov -:- Miscellaneous Bits from Life 6.6 8 Nov -:- Reagans brain: the search continues
    http://www.langston.com/Fun_People/1995.html
    HOME
    Yahoo! 360° - dotnetravis Blog::
    At the time of writing (Jun 2002), Microsoft is offering a $300 mail-in rebate 6.6 Why do I get errors when I try to serialize a Hashtable?
    http://blog.360.yahoo.com/ravikpatel?l=16&u=17&mx=17&lmt=5
    HOME


  • My computer is connected to the Internet about 85 percent of the time that it is turned on and yet, like most people, I certainly don't use the network that much. Windows XP takes advantage of this unused bandwidth by comparing the most recent service packs and hotfixes available online with those installed on my machine. If it finds I need updates, it downloads them in the background. Once completed, Windows notifies me of the arrival of new bits that need to be installed.
    www.haskell.org/pipermail/libraries/2006-September.txt::
    To fix HaXml to work with ghc-6.6, I have pushed two new versions: 1.17 is the version of Stream library is correct, but why the hell it hides old ArrayRef
    http://www.haskell.org/pipermail/libraries/2006-September.txt
    HOME
    http://msdn.microsoft.com/msdnmag/issues/03/02/BITS/default.aspx


    If you follow the MSDN link and scroll down a bit there is a very good description of BITS. It's a bit techincal but still easy to understand:

    BITS is a cool new file transfer feature of Windows that asynchronously downloads files from a remote server over HTTP. BITS can manage multiple downloads from multiple users while making use of idle bandwidth exclusively. Although the use of BITS is not limited to auto-updating applications, it is the underlying API used by Windows Update. And since it is available to any application, it can be used to do much of the really tough work involved in creating an auto-updating application.

    Here is the basic idea. An application asks BITS to manage the download of a file or set of files. BITS adds the job to its queue and associates the job with the user context under which the application is running. As long as the user is logged on, BITS will drizzle the files across the network using idle bandwidth. In fact, the code-name for the BITS technology is Drizzle, which, it turns out, is quite descriptive of what BITS does.

    How does all of this work? The technology is actually fairly sophisticated. First, BITS is implemented as a Windows service that maintains a collection of jobs organized into a set of priority queues: foreground, high, normal, and low. Each job in the same priority level is given bandwidth via time slices of about five minutes, in a round-robin fashion. Once there are no jobs remaining in a queue, the next priority queue is inspected for jobs.

    Jobs in the foreground queue use as much network bandwidth as they can, and for this reason the foreground priority should only be used by code that is responding to a user request. The remaining priorities†high, normal, and low†are much more interesting because they are all background priorities, which is to say that they only make use of network bandwidth that's not in use.

    To achieve this background feature, BITS monitors network packets and disregards packets that it recognizes as its own. The remaining packets are considered the active load on the machine's bandwidth. BITS uses the active load information along with the connection speed and some other statistics to decide whether it should continue downloading files or back off in order to increase throughput for the active user. Because of this, the user doesn't experience bandwidth problems.

    The ability to drop what it is doing at a moment's notice is very important for BITS. In many cases, only part of a file is downloaded before BITS must give up the network or even lose connection altogether. The partially downloaded file is saved, however, and when BITS gets another crack at the network, it picks up where it left off. This ability to recover does have some side effects.

    Remember that BITS is used to transfer files from HTTP servers. A server should be HTTP 1.1-compliant or at least support the Range header in the GET method for BITS to work. This is because BITS needs to be able to request a portion of a file. In addition, the content being downloaded must be static content such as a markup file, code file, bitmap, or sound. A GET request including a Range header makes no sense when requesting dynamic content such as that produced by CGI, ISAPI, or ASP.NET.

    Currently, there are two versions of BITS: 1.0 and 1.5. BITS 1.0 ships with Windows XP and has the following features: interruptible background downloading of files, download prioritization, optional notification of completed jobs and error situations, and optional progress notifications for use with dialog boxes and other UI elements. BITS 1.5 ships with Windows .NET Server. In addition to the features contained in BITS 1.0, version 1.5 has interruptible background uploading of files and authenticated connections using Basic, Digest, NTLM, Negotiate (Kerberos) or Passport. BITS 1.5 is available as a redistributable that is compatible with Windows 2000 and greater (see Background Intelligent Transfer Service).

    The BITS 1.0 feature set is sufficient for writing auto-updating applications, but the BITS 1.5 features allow you to perform more complicated tasks like selling updates or handling interaction between the application and the server.


  • I'd love my podcasting client to be able to simply recognize when I've been idle and only start downloading then. Wouldn't that be simple enough? It seems like that could be done without all the pesky bandwidth issues.


  • Looking at the MSDN overview, I would say that each 'chunk' grabbed by BITS would count as a single hit on a webserver (a single http GET request) so if it's sliced fine enough, a single file download could be 50, 100, or even more GET requests and thus hits.


  • So now, we just need to figure out if a client is experimenting with it, and how exactly it works. My newest show is being hit over 3,000 times by Microsoft BITS.


  • I highly doubt the hits are coming from DrizzleCast at all. But that is interesting. It's a very obscure app at this point. Whatever this is is generating more hits than iPodder and iPodderX combined...


  • Looking at the MSDN overview, I would say that each 'chunk' grabbed by BITS would count as a single hit on a webserver (a single http GET request) so if it's sliced fine enough, a single file download could be 50, 100, or even more GET requests and thus hits.

    I think that's exactly right. It would be interesting to see the log files on an XP OS that's doing this. I'm running 2000 P, but I'll be on XP on the new laptop next week.

    It would also be interesting to see how BITS prioritizes high-meduim-low, and also how it defines 'idle' (unless I missed something). What happens on a machine that's running VPN or is running some client that is always 'GET'ing something?

    Sorry, just went into a MS stupor. Back to your regularly scheduled program...


  • I found a software that uses BITS found here:

    Using BITS †Background Intelligent Transfer System †downloads will automaticly adjust their download speed depending on how much you surf. Solid browser integration, both for Mozilla Firefox browser and Internet Explorer. Accelerates downloads by up to 30% by using multiple download threads. No more broken downloads! GoFetch can resume almost all broken downloads!
    http://www.softaward.com/9286.html

    Another thing I found was the ability for people to write applications using BITS technology and APIs to download while their computers were idle.

    My computer is connected to the Internet about 85 percent of the time that it is turned on and yet, like most people, I certainly don't use the network that much. Windows XP takes advantage of this unused bandwidth by comparing the most recent service packs and hotfixes available online with those installed on my machine. If it finds I need updates, it downloads them in the background. Once completed, Windows notifies me of the arrival of new bits that need to be installed.
    http://msdn.microsoft.com/msdnmag/issues/03/02/BITS/default.aspx

    This could mean 2 things in my opinion. Someone is workin gon integrating BITS into their podcatcher (doppler, ipodder or some other app) or maybe Microsoft is playing with their own ideas (most likely the prior).

    All i can say is, BITS is kinda interesting. The ability for your computer to throttle your podcast downloads to use more bandwidth and CPU when you are not using your computer, or to minimize cpu and bandwidth usage while you were using your machine is an awesome concept.

    **Imagine a world where all content, audio + video, is distributed via RSS or podcasts. You would rely on the productivity of your computer. If you were getting music, games, news, tv programs, audio programs, advertising, sales sheets ... ANYTHING ... delivered in podcast format, it would be a sweet deal to not have your bandwidth stolen by your podcatching client on your machine while you were trying to work, check email or surf the net.

    PS > I may have a had a few beers tonight and not have fully grasped the idea of BITS. If so, ignore this post, or better yet...research it and tell me where i went wrong.


  • I'd love my podcasting client to be able to simply recognize when I've been idle and only start downloading then.

    Huh? I don't follow............


  • I've been noticing this in my Libsyn stats as well. I thought perhaps it had something to do with PodcastMania but now seeing this I'm not so sure.


  • CC, Microsoft BITS is a technology that basically allows your PC to download content when you aren't using bandwidth, much like 'Windows Update' slowly trickles the files into your machine.

    It's being speculated that someone may be experimenting with this on a podcasting client....

    Other than that, we're all in the dark.

    I spoke with Todd of Geek News Central last night. Even stumped him..

    He is dropping a line directly to Scoble, so we should have an answer...





  • Nortel Unveils Vision, Strategy for Israeli High-Performance Net
    Busy Friday Leads to Strong Close for Net Stocks
  • why does mainstream rock and radio blow so bad
  • what is this song well known modern rock
  • if you could move somewhere else would you and where
  • could i be any cooler
  • feeling guilty about manga please help
  • what are three songs that have the same overall theme or meaning
  • is rock today really that bad
  • which is better nintendo wii xbox 360 or ps3 for a 10 year old
  • need more music
  • is it me or is the band panic at the disco just singing random rubbish
  • what do you think of todays music does it compare to past generations
  • bands songs and other random things just for fun
  • do you want your president to be taking mind altering drugs
  • tips for returning items at best buy

  • to anyone who has been to the bad boys of rock concert what songs do hinder papa roach and buckcherry sing
  • emo music and rock music
  • why is popular rock so bad now
  • what do other christians think about rock music
  • i 039 m 13 and i want to get 100 in a week
  • best rock music
  • how will you celebrate the 25th anniversary of cell phones it 039 s today
  • how big is the ska reggae scene in santa cruz ca
  • what songs should i play with my band
  • my parents think punk rock is killing me help please
  • friend needs a makeover any recommendations pic
  • nice country rock groups
  • do you think today 039 s music is good or bad
  • #If you have any other info about this subject , Please add it free.#
    Your name:
    E-mail:
    Telphone:

    Your comments:


    If you have any other info about What the HELL is Microsoft BITS 6.6? , Please add it free.

    About us -Site map -Advertisement -Jion us -Contact usExchange linksSponsor us
    Copyright© 2008 gigj.com All Rights Reserved
    Site made&Support support@gigj.com    E-mail: web@gigj.com