In requesting and receiving blocks of a stream enabled application, some blocks may be predicted as needed following other blocks. When blocks are predicted, there may be uncertainty as to how many predicted blocks to transmit. This may relate to an amount of data to be transmitted. If too many blocks are sent then a delay perceived by a user is increased, and/or network bandwidth is wasted, which may be expensive to a streaming service provider. If too few blocks are sent then bandwidth of a network connection may be underutilized. If a system refrains from transmitting blocks until a user actually requests them then the system must transmit the requested blocks while the user waits, expending the user's valuable time. In many cases users may desire to eliminate such waiting time.
The foregoing examples of the related art and limitations related therewith are intended to be illustrative and not exclusive. Other limitations of the related art will become apparent to those of skill in the art upon a reading of the specification and a study of the drawings.
The following embodiments and aspects thereof are described and illustrated in conjunction with systems, tools, and methods that are meant to be exemplary and illustrative, not limiting in scope. In various embodiments, one or more of the above described problems have been reduced or eliminated, while other embodiments are directed to other improvements.
A technique for determining a data window size allows a set of predicted blocks to be transmitted using surplus bandwidth. Advantageously, predicted blocks are transmitted to a streaming playback device before the device needs the blocks. A stream enabled application executing in a virtual execution environment may use the blocks when needed without having to wait for their transmission, limiting user delays.
A system based on the technique may include a streaming playback device and a streaming server. The streaming server may provide the streaming playback device blocks that it will need prior to the blocks actually being requested. The streaming playback device may cache necessary blocks and then use them when needed. A caching system may request only those blocks that are not found in cache when requests for blocks include some but not all of the blocks in the cache.
In the following description, several specific details are presented to provide a thorough understanding. One skilled in the relevant art will recognize, however, that the concepts and techniques disclosed herein can be practiced without one or more of the specific details, or in combination with other components, etc. In other instances, well-known implementations or operations are not shown or described in detail to avoid obscuring aspects of various examples disclosed herein.
In the example of
Resources, e.g. data, executable code, may be included in the deliverables supplied by the software provider 102. An application executing in a virtual execution environment may request resources, and it may be necessary to transmit blocks including resources to a streaming playback device for satisfaction of the resource request. A user may be required to wait while blocks including resources are transmitted to a streaming playback device.
The software application may have an interactive threshold. The interactive threshold may be an amount of time that a user is willing to wait for a system to access resources. In a non-limiting example, the interactivity threshold may be approximately 1/10 of a second because a 1/10 of a second delay is noticeable to a human being, and delays of greater than 1/10 of a second may decrease user satisfaction with the software. The interactivity threshold may be supplied by the software provider 102, may be determined through trial and error, may be determined by systematically executing the software application many times and averaging user responses, may be set to a default value (e.g. 1/10 of a second) or may be acquired by any method known or convenient.
In the example of
In the example of
Alternatively, in lieu of or in addition to a server, an I/O device that includes at last some blocks of the stream enabled application could be used. In this case, the I/O interface may have relevant throughput and latency characteristics.
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
Notably, below, two examples are provided of pseudo code that could be implemented to fill the output buffer 610 with blocks. However, neither the first example, nor the second example are limiting. Any known or convenient manner of filling the output buffer 610 with blocks may be used.
In a non-limiting example, the predicted block aggregation engine 612 may implement a priority queue to fill the output buffer with blocks. Consider a priority queue PQ. PQ contains tuples (pq,bq) each containing a probability (pq) and a block number (bq). The priority queue may be ordered by probability. A minimum probability tuple may always sit at the top of the queue. Initially PQ is empty. Q may be a working queue of tuples (pw,bw) each containing a probability (pw) and a block number (bw). PROB may be an indexed probability table 606 storing a probability of needing a predicted block having seen one or more previous blocks. The probability may be set in the range of 0-1. Let N be the max number of blocks that you can put into the output buffer=data window size/block size.
In continuing the non-limiting example, the following pseudo-code could be implemented to fill an output buffer with predicted blocks up to a maximum data window:
Notably, one could use as many stages of look ahead as is desirable. One could have PROB[seen1][seen2] . . . [seen n] [predicted block]=the probability of seeing the predicted block give the sequence of previously seen blocks seen 1 . . . seen n. The additional stages of look ahead may provide better focused predictions of blocks. In another non-limiting example, the following pseudo code could be implemented to fill the output buffer with blocks. Q is a working queue of (probability, block number) tuples, sorted by order of decreasing probability, initially empty. Let probability table be same as discussed above relative to the first example.
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In the example of
In determining a data window size, the following non-limiting examples an interactive threshold may be calculated, however, any known or convenient method of calculating a data window size may be used. The following non-limiting examples are provided for clarity.
In a non-limiting example of a method for calculating a data window size MAX WINDOW may be an upper limit of the largest amount of data that the response buffer may hold. Throughput may be a value representing the amount of data per unit of time that may be transmitted on a network connecting a streaming server with a streaming playback device. The data window size may thus be calculated: data window=MIN[MAXIMUM_WINDOW, throughput*interactive threshold].
In a non-limiting example, an interactive threshold is a limit on the amount of time that an individual may be willing to wait for a block. A latency may be a time delay between deciding to transmit a block and transmitting the first bit of the block. A throughput may be a value representing the amount of data per unit of time that may be transmitted on a network connecting a streaming server with a streaming playback device. The data window size may thus be calculated: data window=(interactive threshold−round trip latency)*throughput.
In a non-limiting example a MIN_WINDOW_SIZE may be a lower limit of the smallest amount of data that the response buffer may hold. An interactive threshold and a latency may be as described above. The data window may be thus calculated data window=MAX [MIN_WINDOW_SIZE, (interactive threshold−(round trip latency))*throughput].
Any manner of determining a latency known or convenient may be used. Latency may be important because an interactive threshold is decreased by subtracting a latency from the time allowed for the interactive threshold. Any manner of determining a latency known or convenient may be used. Latency may be continuously recalculated throughout a streaming session so as to provide an accurate data window size.
Throughput may be dynamically determined by, at the beginning of the session, sending test buffers between a server and a client. The throughput may be calculated, based on the time required to transmit the buffers, and the data size of the buffers. The throughput could be run through a low pass filter to obtain an average throughput, to get a constant updated throughput. If something in the network switches routes, then we may adapt our window size. Alternatively, any manner of determining a throughput known or convenient may be used.
The computer 902 interfaces to external systems through the interface 910, which may include a modem, network interface, CD-ROM drive, DVD-ROM drive, or any known or convenient interface. An interface may include one or more input-output devices. Interface 910 may include one or more interfaces. An interface may include a device for reading a fixed media. An interface may receive deliverables. An interface may transmit a stream-enabled application. It will be appreciated that the interface 910 can be considered to be part of the computing system 900 or a part of the computer 902. The interface 910 can be an analog modem, ISDN modem, cable modem, token ring interface, satellite transmission interface (e.g. “direct PC”), or other interface for coupling a computing system to other computing systems.
The processor 908 may be, for example, a microprocessor such as an Intel Pentium microprocessor or Motorola power PC microprocessor. The memory 912 is coupled to the processor 908 by a bus 920. The memory 912 can be Dynamic Random Access Memory (DRAM) and can also include Static RAM (SRAM). The bus 920 couples the processor 908 to the memory 912, also to the non-volatile storage 916, and to the display controller 914.
The non-volatile storage 916 is often a magnetic hard disk, an optical disk, or another form of storage for large amounts of data. Some of this data is often written, by a direct memory access process, into memory 912 during execution of software in the computer 902. One of skill in the art will immediately recognize that the terms “machine-readable medium” or “computer-readable medium” includes any type of storage device that is accessible by the processor 908 and also encompasses a carrier wave that encodes a data signal.
The computing system 900 is one example of many possible computing systems which have different architectures. For example, personal computers based on an Intel microprocessor often have multiple buses, one of which can be an I/O bus for the peripherals and one that directly connects the processor 908 and the memory 912 (often referred to as a memory bus). The buses are connected together through bridge components that perform any necessary translation due to differing bus protocols.
Network computers are another type of computing system that can be used in conjunction with the teachings provided herein. Network computers do not usually include a hard disk or other mass storage, and the executable programs are loaded from a network connection into the memory 912 for execution by the processor 908. A Web TV system, which is known in the art, is also considered to be a computing system, but it may lack some of the features shown in
In addition, the computing system 900 is controlled by operating system software which includes a file management system, such as a disk operating system, which is part of the operating system software. One example of operating system software with its associated file management system software is the family of operating systems known as Windows® from Microsoft Corporation of Redmond, Wash., and their associated file management systems. Another example of operating system software with its associated file management system software is the Linux operating system and its associated file management system. The file management system is typically stored in the non-volatile storage 916 and causes the processor 908 to execute the various acts required by the operating system to input and output data and to store data in memory, including storing files on the non-volatile storage 916.
Some portions of the detailed description are presented in terms of algorithms and symbolic representations of operations on data bits within a computer memory. These algorithmic descriptions and representations are the means used by those skilled in the data processing arts to most effectively convey the substance of their work to others skilled in the art. An algorithm is here, and generally, conceived to be a self-consistent sequence of operations leading to a desired result. The operations are those requiring physical manipulations of physical quantities. Usually, though not necessarily, these quantifies take the form of electrical or magnetic signals capable of being stored, transferred, combined, compared, and otherwise manipulated. It has proven convenient at times, principally for reasons of common usage, to refer to these signals as bits, values, elements, symbols, characters, terms, numbers, or the like.
It should be borne in mind, however, that all of these and similar terms are to be associated with the appropriate physical quantities and are merely convenient labels applied to these quantities. Unless specifically stated otherwise as apparent from the following discussion, it is appreciated that throughout the description, discussions utilizing terms such as “processing” or “computing” or “calculating” or “determining” or “displaying” or the like, refer to the action and processes of a computing system, or similar electronic computing device, that manipulates and transforms data represented as physical (electronic) quantities within the computing system's registers and memories into other data similarly represented as physical quantities within the computing system memories or registers or other such information storage, transmission or display devices.
The teachings included herein also relate to an apparatus for performing the operations herein. This apparatus may be specially constructed for the required purposes, or it may comprise a general purpose computer selectively activated or reconfigured by a computer program stored in the computer. Such a computer program may be stored in a computer readable storage medium, such as, but is not limited to, read-only memory (ROM), random access memory (RAM), EPROM, EEPROM, magnetic or optical cards, any type of disk including floppy disks, optical disks, CD-ROMs, and magnetic-optical disks, or any type of media suitable for storing electronic instructions, and each coupled to a computing system bus.
The algorithms and displays presented herein are not inherently related to any particular computer or other apparatus. Various general purpose systems may be used with programs in accordance with the teachings herein, or it may prove convenient to construct more specialized apparatus to perform the required method steps. The required structure for a variety of these systems will appear from the description below. In addition, there is no reference to any particular programming language, and various examples may be implemented using a variety of programming languages.
It will be appreciated to those skilled in the art that the preceding examples and embodiments are exemplary and not limiting in scope. It is intended that all permutations, enhancements, equivalents, and improvements thereto that are apparent to those skilled in the art upon a reading of the specification and a study of the drawings are included within the true spirit and scope of these teachings. It is therefore intended that the following appended claims include all such modifications, permutations, and equivalents as fall within the true spirit and scope of these teachings.
This application is a continuation application of U.S. patent application Ser. No. 15/723,166, filed Oct. 2, 2017, now U.S. Pat. No. 10,587,473, which is a continuation application of U.S. patent application Ser. No. 15/064,286, filed Mar. 8, 2016, now U.S. Pat. No. 9,781,007, which is a continuation application of U.S. patent application Ser. No. 14/553,873, filed Nov. 25, 2014, now U.S. Pat. No. 9,300,752, which is a continuation application of U.S. patent application Ser. No. 13/962,554, filed Aug. 8, 2013, now U.S. Pat. No. 8,898,391, which is a continuation application of U.S. patent application Ser. No. 13/234,950 filed Sep. 16, 2011, now U.S. Pat. No. 8,527,706, which is a continuation application of U.S. patent application Ser. No. 12/062,789, filed Apr. 4, 2008, now U.S. Pat. No. 8,024,523, which claims priority to U.S. Provisional Patent Application No. 60/986,261, filed Nov. 7, 2007, all of which are incorporated herein by reference. The U.S. patent application Ser. No. 13/234,950, now U.S. Pat. No. 8,527,706, is also a continuation-in-part of U.S. patent application Ser. No. 11/388,381, filed Mar. 23, 2006, now U.S. Pat. No. 9,716,609, which claims priority to U.S. Provisional Patent Application No. 60/664,765, filed on Mar. 23, 2005, all of which are also incorporated herein by reference.
Number | Name | Date | Kind |
---|---|---|---|
4562306 | Chuo | Dec 1985 | A |
4796220 | Wolfe | Jan 1989 | A |
4949257 | Orbach | Aug 1990 | A |
4970504 | Chen | Nov 1990 | A |
4999806 | Chernow | Mar 1991 | A |
5012512 | Basso | Apr 1991 | A |
5032979 | Hecht | Jul 1991 | A |
5047928 | Wiedemer | Sep 1991 | A |
5063500 | Shorter | Nov 1991 | A |
5109413 | Comeford | Apr 1992 | A |
5166886 | Molnar | Nov 1992 | A |
5210850 | Kelly | May 1993 | A |
5293556 | Hill | Mar 1994 | A |
5311596 | Scott | May 1994 | A |
5325489 | Mitsuhira | Jun 1994 | A |
5442791 | Wrabetz | Aug 1995 | A |
5481611 | Owens | Jan 1996 | A |
5495411 | Ananda | Feb 1996 | A |
5533123 | Force | Jul 1996 | A |
5537566 | Konno | Jul 1996 | A |
5544321 | Theimer | Aug 1996 | A |
5546526 | Li | Aug 1996 | A |
5547202 | Tsumura | Aug 1996 | A |
5548645 | Ananda | Aug 1996 | A |
5553139 | Ross | Sep 1996 | A |
5553143 | Ross | Sep 1996 | A |
5555376 | Theimer | Sep 1996 | A |
5590300 | Lautzenheiser | Dec 1996 | A |
5611050 | Theimer | Mar 1997 | A |
5629980 | Stefik | May 1997 | A |
5630049 | Cardoza | May 1997 | A |
5635906 | Joseph | Jun 1997 | A |
5638513 | Ananda | Jun 1997 | A |
5652887 | Dewey | Jul 1997 | A |
5666293 | Metz | Sep 1997 | A |
5696965 | Dedrick | Dec 1997 | A |
5701427 | Lathrop | Dec 1997 | A |
5706440 | Compliment | Jan 1998 | A |
5715403 | Stefik | Feb 1998 | A |
5758150 | Bell | May 1998 | A |
5761406 | Kobayashi | Jun 1998 | A |
5761445 | Nguyen | Jun 1998 | A |
5764906 | Edelstein | Jun 1998 | A |
5764918 | Poulter | Jun 1998 | A |
5765152 | Erickson | Jun 1998 | A |
5765153 | Benantar | Jun 1998 | A |
5768528 | Stumm | Jun 1998 | A |
5768539 | Metz | Jun 1998 | A |
5771354 | Crawford | Jun 1998 | A |
5778395 | Whiting | Jul 1998 | A |
5790753 | Krishnamoorthy | Aug 1998 | A |
5805809 | Singh | Sep 1998 | A |
5809144 | Sirbu | Sep 1998 | A |
5812865 | Theimer | Sep 1998 | A |
5812881 | Ku | Sep 1998 | A |
5815662 | Ong | Sep 1998 | A |
5818711 | Schwabe | Oct 1998 | A |
5822537 | Katseff | Oct 1998 | A |
5832289 | Shaw | Nov 1998 | A |
5835722 | Bradshaw | Nov 1998 | A |
5838910 | Domenikos | Nov 1998 | A |
5839910 | Meller | Nov 1998 | A |
5855020 | Kirsch | Dec 1998 | A |
5874986 | Gibbon | Feb 1999 | A |
5878425 | Redpath | Mar 1999 | A |
5881229 | Singh | Mar 1999 | A |
5881232 | Cheng | Mar 1999 | A |
5892915 | Duso | Apr 1999 | A |
5892953 | Bhagria | Apr 1999 | A |
5895454 | Harrington | Apr 1999 | A |
5895471 | King | Apr 1999 | A |
5901315 | Edwards | May 1999 | A |
5903721 | Sixtus | May 1999 | A |
5903732 | Reed | May 1999 | A |
5903892 | Hoffert | May 1999 | A |
5905868 | Baghai | May 1999 | A |
5905990 | Inglett | May 1999 | A |
5909545 | Frese | May 1999 | A |
5911043 | Duffy | Jun 1999 | A |
5918015 | Suzuki | Jun 1999 | A |
5923885 | Johnson | Jul 1999 | A |
5925126 | Hsieh | Jul 1999 | A |
5926552 | Mckeon | Jul 1999 | A |
5929849 | Kikinis | Jul 1999 | A |
5931907 | Davies | Aug 1999 | A |
5933603 | Vahalia | Aug 1999 | A |
5933822 | Braden-Harder | Aug 1999 | A |
5940591 | Boyle | Aug 1999 | A |
5943424 | Berger | Aug 1999 | A |
5948062 | Tzelnic | Aug 1999 | A |
5948065 | Eilert | Sep 1999 | A |
5949877 | Traw | Sep 1999 | A |
5950195 | Stockwell | Sep 1999 | A |
5953506 | Kalra | Sep 1999 | A |
5956717 | Kraay | Sep 1999 | A |
5960411 | Hartman | Sep 1999 | A |
5960439 | Hamner | Sep 1999 | A |
5961586 | Pedersen | Oct 1999 | A |
5961591 | Jones | Oct 1999 | A |
5963444 | Shidara | Oct 1999 | A |
5963944 | Adams | Oct 1999 | A |
5968176 | Nessett | Oct 1999 | A |
5973696 | Arganat | Oct 1999 | A |
5987454 | Hobbs | Nov 1999 | A |
5987608 | Roskind | Nov 1999 | A |
6003065 | Yan | Dec 1999 | A |
6003095 | Pekowski | Dec 1999 | A |
6014686 | Elnozahy | Jan 2000 | A |
6018619 | Allard | Jan 2000 | A |
6026166 | LeBourgeois | Feb 2000 | A |
6028925 | Van Berkum | Feb 2000 | A |
6038379 | Fletcher | Mar 2000 | A |
6038610 | Belfiore | Mar 2000 | A |
6047323 | Krause | Apr 2000 | A |
6049792 | Hart | Apr 2000 | A |
6049835 | Gagnon | Apr 2000 | A |
6061738 | Osaku | May 2000 | A |
6065043 | Domenikos | May 2000 | A |
6076104 | McCue | Jun 2000 | A |
6081842 | Shachar | Jun 2000 | A |
6085186 | Christianson | Jul 2000 | A |
6085193 | Malkin | Jul 2000 | A |
6088705 | Lightstone | Jul 2000 | A |
6092154 | Curtis | Jul 2000 | A |
6092194 | Touboul | Jul 2000 | A |
6094649 | Bowen | Jul 2000 | A |
6098072 | Sluiman | Aug 2000 | A |
6099408 | Schneier | Aug 2000 | A |
6101482 | Diangelo | Aug 2000 | A |
6101491 | Woods | Aug 2000 | A |
6101537 | Edelstein | Aug 2000 | A |
6108420 | Larose | Aug 2000 | A |
6115741 | Domenikos | Sep 2000 | A |
6138271 | Keeley | Oct 2000 | A |
6154878 | Saboff | Nov 2000 | A |
6157948 | Inoue | Dec 2000 | A |
6167510 | Tran | Dec 2000 | A |
6167522 | Lee | Dec 2000 | A |
6173311 | Hassett | Jan 2001 | B1 |
6173330 | Guo | Jan 2001 | B1 |
6185608 | Hon | Feb 2001 | B1 |
6192398 | Hunt | Feb 2001 | B1 |
6192408 | Vahalia | Feb 2001 | B1 |
6195694 | Chen | Feb 2001 | B1 |
6212640 | Abdelnur | Apr 2001 | B1 |
6219693 | Napolitano | Apr 2001 | B1 |
6226412 | Schwab | May 2001 | B1 |
6226665 | Deo | May 2001 | B1 |
6253234 | Hunt | Jun 2001 | B1 |
6275470 | Ricciulli | Aug 2001 | B1 |
6275496 | Burns | Aug 2001 | B1 |
6278992 | Curtis | Aug 2001 | B1 |
6281898 | Nikolovska | Aug 2001 | B1 |
6282712 | Davis | Aug 2001 | B1 |
6298356 | Jawahar | Oct 2001 | B1 |
6301584 | Ranger | Oct 2001 | B1 |
6301605 | Napolitano | Oct 2001 | B1 |
6301629 | Sastri | Oct 2001 | B1 |
6301685 | Shigeta | Oct 2001 | B1 |
6311221 | Raz | Oct 2001 | B1 |
6314425 | Serbinis | Nov 2001 | B1 |
6317811 | Deshpande | Nov 2001 | B1 |
6321260 | Takeuchi | Nov 2001 | B1 |
6327674 | Ito | Dec 2001 | B1 |
6330561 | Cohen | Dec 2001 | B1 |
6343287 | Kumar | Jan 2002 | B1 |
6347398 | Parthasarathy | Feb 2002 | B1 |
6356946 | Clegg | Mar 2002 | B1 |
6369467 | Noro | Apr 2002 | B1 |
6370686 | Delo | Apr 2002 | B1 |
6374402 | Schmeidler | Apr 2002 | B1 |
6385696 | Doweck | May 2002 | B1 |
6389467 | Eyal | May 2002 | B1 |
6418554 | Delo | Jul 2002 | B1 |
6418555 | Mohammed | Jul 2002 | B2 |
6418556 | Bennington | Jul 2002 | B1 |
6424991 | Gish | Jul 2002 | B1 |
6425017 | Dievendorff | Jul 2002 | B1 |
6449688 | Peters | Sep 2002 | B1 |
6453334 | Vinson | Sep 2002 | B1 |
6457076 | Cheng | Sep 2002 | B1 |
6508709 | Karmarkar | Jan 2003 | B1 |
6510458 | Berstis | Jan 2003 | B1 |
6510462 | Blumenau | Jan 2003 | B2 |
6510466 | Cox | Jan 2003 | B1 |
6524017 | Lecocq | Feb 2003 | B2 |
6574618 | Eylon | Jun 2003 | B2 |
6584507 | Bradley | Jun 2003 | B1 |
6587857 | Carothers | Jul 2003 | B1 |
6594682 | Peterson | Jul 2003 | B2 |
6598125 | Romm | Jul 2003 | B2 |
6601103 | Goldschmidt | Jul 2003 | B1 |
6601110 | Marsland | Jul 2003 | B2 |
6605956 | Farnworth | Aug 2003 | B2 |
6609114 | Gressel | Aug 2003 | B1 |
6611812 | Hurtado | Aug 2003 | B2 |
6622137 | Ravid | Sep 2003 | B1 |
6622171 | Gupta | Sep 2003 | B2 |
6636961 | Braun | Oct 2003 | B1 |
6651251 | Shoff | Nov 2003 | B1 |
6687745 | Franco | Feb 2004 | B1 |
6694510 | Willems | Feb 2004 | B1 |
6697869 | Mallart | Feb 2004 | B1 |
6711619 | Chandramohan | Mar 2004 | B1 |
6721870 | Yochai | Apr 2004 | B1 |
6732179 | Brown | May 2004 | B1 |
6735631 | Oehrke | May 2004 | B1 |
6757708 | Craig | Jun 2004 | B1 |
6757894 | Eylon | Jun 2004 | B2 |
6763370 | Schmeidler | Jul 2004 | B1 |
6772209 | Chernock | Aug 2004 | B1 |
6775779 | England | Aug 2004 | B1 |
6779179 | Romm | Aug 2004 | B1 |
6785768 | Peters | Aug 2004 | B2 |
6785865 | Cote | Aug 2004 | B1 |
6801507 | Humpleman | Oct 2004 | B1 |
6810525 | Safadi | Oct 2004 | B1 |
6816909 | Chang | Nov 2004 | B1 |
6816950 | Nichols | Nov 2004 | B2 |
6832222 | Zimowski | Dec 2004 | B1 |
6836794 | Lucowsky | Dec 2004 | B1 |
6854009 | Hughes | Feb 2005 | B1 |
6891740 | Williams | May 2005 | B2 |
6918113 | Patel | Jul 2005 | B2 |
6925495 | Hedge | Aug 2005 | B2 |
6938096 | Greschler | Aug 2005 | B1 |
6959320 | Shah | Oct 2005 | B2 |
6970866 | Pravetz | Nov 2005 | B1 |
6985915 | Somalwar | Jan 2006 | B2 |
7024677 | Snyder | Apr 2006 | B1 |
7028305 | Schaefer | Apr 2006 | B2 |
7043524 | Shah | May 2006 | B2 |
7047312 | Aweya | May 2006 | B1 |
7051315 | Artzi | May 2006 | B2 |
7062567 | Benitez | Jun 2006 | B2 |
7093077 | Cooksey | Aug 2006 | B2 |
7096253 | Vinson | Aug 2006 | B2 |
7112138 | Hendrick | Sep 2006 | B2 |
7130616 | Janik | Oct 2006 | B2 |
7137072 | Bauer | Nov 2006 | B2 |
7171390 | Song | Jan 2007 | B1 |
7191441 | Abbott | Mar 2007 | B2 |
7192352 | Walker | Mar 2007 | B2 |
7197516 | Hipp | Mar 2007 | B1 |
7246119 | Kuwata | Jul 2007 | B2 |
7380014 | Lecroy | May 2008 | B2 |
7451196 | de Vries | Nov 2008 | B1 |
7529834 | Birrell | May 2009 | B1 |
7711539 | Kimmel | May 2010 | B1 |
20010003828 | Peterson | Jun 2001 | A1 |
20010014878 | Mitra | Aug 2001 | A1 |
20010027493 | Wallace | Oct 2001 | A1 |
20010034736 | Eylon | Oct 2001 | A1 |
20010037399 | Eylon | Nov 2001 | A1 |
20010037400 | Raz | Nov 2001 | A1 |
20010042833 | Kenway | Nov 2001 | A1 |
20010044850 | Raz | Nov 2001 | A1 |
20010044851 | Rothman | Nov 2001 | A1 |
20020015106 | Taylor, Jr. | Feb 2002 | A1 |
20020019864 | Mayer | Feb 2002 | A1 |
20020027884 | Halme | Mar 2002 | A1 |
20020035674 | Vetrivelkumaran | Mar 2002 | A1 |
20020038374 | Gupta | Mar 2002 | A1 |
20020042833 | Hendler | Apr 2002 | A1 |
20020057893 | Wood | May 2002 | A1 |
20020059402 | Belanger | May 2002 | A1 |
20020065848 | Walker | May 2002 | A1 |
20020078170 | Brewer | Jun 2002 | A1 |
20020078203 | Greschler | Jun 2002 | A1 |
20020083183 | Pujare | Jun 2002 | A1 |
20020083187 | Sim | Jun 2002 | A1 |
20020087717 | Artzi | Jul 2002 | A1 |
20020087883 | Wohlgemuth | Jul 2002 | A1 |
20020087963 | Eylon | Jul 2002 | A1 |
20020091763 | Shah | Jul 2002 | A1 |
20020091901 | Romm | Jul 2002 | A1 |
20020116476 | Eyal | Aug 2002 | A1 |
20020133491 | Sim | Sep 2002 | A1 |
20020138640 | Raz | Sep 2002 | A1 |
20020147849 | Wong | Oct 2002 | A1 |
20020156911 | Croman | Oct 2002 | A1 |
20020157089 | Patel | Oct 2002 | A1 |
20020161908 | Benitez | Oct 2002 | A1 |
20020174215 | Schaefer | Nov 2002 | A1 |
20020174293 | Fox | Nov 2002 | A1 |
20020176443 | Wei | Nov 2002 | A1 |
20030004882 | Holler | Jan 2003 | A1 |
20030009538 | Shah | Jan 2003 | A1 |
20030056112 | Vinson | Mar 2003 | A1 |
20030105816 | Goswami | Jun 2003 | A1 |
20030128692 | Mitsumori | Jul 2003 | A1 |
20030131197 | Morrison | Jul 2003 | A1 |
20030138024 | Williamson | Jul 2003 | A1 |
20030140160 | Raz | Jul 2003 | A1 |
20030204550 | Lutter | Oct 2003 | A1 |
20040003105 | Berzosa | Jan 2004 | A1 |
20040036722 | Warren | Feb 2004 | A1 |
20040128342 | Maes | Jul 2004 | A1 |
20040133657 | Smith | Jul 2004 | A1 |
20040199566 | Carlson | Oct 2004 | A1 |
20040205289 | Srinivasan | Oct 2004 | A1 |
20040230784 | Cohen | Nov 2004 | A1 |
20040230971 | Rachman | Nov 2004 | A1 |
20040267813 | Rivers-Moore | Dec 2004 | A1 |
20040268361 | Schaefer | Dec 2004 | A1 |
20050010607 | Parker | Jan 2005 | A1 |
20050010670 | Greschler | Jan 2005 | A1 |
20050041584 | Lau | Feb 2005 | A1 |
20050091534 | Nave | Apr 2005 | A1 |
20050114472 | Tan | May 2005 | A1 |
20050193139 | Vinson | Sep 2005 | A1 |
20050278642 | Chang | Dec 2005 | A1 |
20050289617 | Safadi | Dec 2005 | A1 |
20060010074 | Zeitsiff | Jan 2006 | A1 |
20060031165 | Nave | Feb 2006 | A1 |
20060041719 | Chui | Feb 2006 | A1 |
20060047716 | Keith, Jr. | Mar 2006 | A1 |
20060048136 | de Vries | Mar 2006 | A1 |
20060062112 | Wijnands | Mar 2006 | A1 |
20060106770 | de Vries | May 2006 | A1 |
20060123185 | de Vries | Jun 2006 | A1 |
20060136389 | Cover | Jun 2006 | A1 |
20060168294 | de Vries | Jul 2006 | A1 |
20060218165 | de Vries | Sep 2006 | A1 |
20060230175 | de Vries | Oct 2006 | A1 |
20070038642 | Durgin | Feb 2007 | A1 |
20070043550 | Tzruya | Feb 2007 | A1 |
20070067435 | Landis | Mar 2007 | A1 |
20070074223 | Lescouet | Mar 2007 | A1 |
20070126749 | Tzruya | Jun 2007 | A1 |
20070129146 | Tzruya | Jun 2007 | A1 |
20070129990 | Tzruya | Jun 2007 | A1 |
20070130075 | Song | Jun 2007 | A1 |
20070130292 | Tzruyz | Jun 2007 | A1 |
20070168309 | Tzruya | Jul 2007 | A1 |
20070196074 | Jennings | Aug 2007 | A1 |
20080178298 | Arai | Jul 2008 | A1 |
20090119458 | de Vries | May 2009 | A1 |
20090119644 | de Vries | May 2009 | A1 |
20100023640 | Vinson | Jan 2010 | A1 |
Number | Date | Country |
---|---|---|
0813325 | Dec 1997 | EP |
0658837 | Jun 2000 | EP |
1020824 | Jul 2000 | EP |
1143349 | Oct 2001 | EP |
1998040993 | Sep 1998 | WO |
1998050853 | Nov 1998 | WO |
1999057863 | Nov 1999 | WO |
1999060458 | Nov 1999 | WO |
2000004681 | Jan 2000 | WO |
2000031657 | Jun 2000 | WO |
2000031672 | Jun 2000 | WO |
2000056028 | Sep 2000 | WO |
2001027805 | Apr 2001 | WO |
2001046856 | Jun 2001 | WO |
2002044840 | Jun 2002 | WO |
2006022745 | Mar 2006 | WO |
2006047133 | May 2006 | WO |
2006055445 | May 2006 | WO |
2006102532 | Sep 2006 | WO |
2006102621 | Sep 2006 | WO |
Entry |
---|
Bailey, Peter et al., “Chart of Darkness: Mapping a Large Intranet,” Dept. of Computer Science, FEIT, The Australian National University, Canberra ACT 0200, Australia, pp. 1-23, Nov. 11, 1999 [retrieved online at http://research.microsoft.com/en-us/um/people/nickcr/pubs/bailey_tr00.pdf]. |
Boneh, Dan et al., “An Attack on RSA Given a Small Fraction of the Private Key Bits,” Advances in Cryptology—Asiacrypt '98, Lecture Notes in Computer Science, vol. 1514, pp. 25-34, Oct. 1998 [retrieved online at http://download.springer.com/static/pdf/450/chp%253A10.1007%252F3-540-49649-1_3.pdf?auth66=1394831295_318c7a44939193b5a2aff612b2a047ac&ext=.pdf]. |
Brin, Sergey et al., “The Anatomy of a Large-Scale Hypertextual Web Search Engine,” Proceedings of the Seventh International World Wide Web Conference, pp. 107-117, Apr. 1998 [retrieved online at http://ilpubs.stanford.edu:8090/361/1/1998-8.pdf]. |
Chang, K. et al., “Dynamic Computation of TCP Maximum Window Size for Directly Connected Hosts,” IBM Technical Disclosure Bulletin, vol. 37, No. 04A, pp. 601-607, Apr. 4, 1994. |
Chu, Yang-Hua et al., “Referee: Trust Management for Web Applications,” Proceedings of the Sixth International World Wide Web Conference, 1997, retrieved online on Jun. 15, 2006 at http://www.si.umich.edu/˜presnick/papers/Referee/www6-referee.html. |
Faupel, Matthew, “Status of Industry Work on Signed Mobile Code,” Joint European Networking Conference (JENC), May 1997, 313-1-313-8. |
Fiedler, David et al., “UNIX System V. Release 4 Administration,” Second Edition, 1991, 1-13, 37-116, 152-153, 175-200, 291-312, Hayden Books, Carmel, Indiana, USA. |
George, Binto et al., “Secure Transaction Processing in Firm Real-Time Database Systems,” SIGMOD International Conference on Management of Data 1997, 462-473, V26, Issue 2, Association of Computing Machinery (ACM) Press, Tucson, Arizona, United States, May 13, 1997. |
Gralla, Preston, “How the Internet Works: Chapter 44—Shopping on the Internet,” IEEE Personal Communications, Aug. 1999, 260-67, QUE—A division of Macmillan Computer Publishing, Millennium Edition. |
Microsoft Corp., “Computer Dictionary,” 3rd edition, 1997, pp. 119 & 305, Microsoft Press. |
Microsoft Corp., “Understanding Universal Plug and Play,” pp. 1-39, Feb. 2000. |
Morrow, Brian et al., “Indexing Within—The Lost Gold Within the Enterprise” Endeavors Technology, Aug. 22, 2000, pp. 1-6. |
Mullender, Sape J. et al., “Amoeba:A Distributed Operating System for the 1990's,” Computer Magazine, May 1990, 44-53, 23(5). |
Nakayoshi et al., “A Secure Private File System with Minimal System Administration,” Communications, Computers and Signal Processing, 1997 IEEE Pacific Rim Conference, 251-255, vol. 1. |
O'Mahony, Donal, “Security Considerations in a Network Management Environment,” 1994, 12-17, vol. 8, IEEE, USA. |
Pyarali, Irfan et al., “Design and Performance of an Object-Oriented Framework for High-Speed Electronic Medical Imaging,” Fall 1996, Computing Systems Journal, 331-375, vol. 9, http://www.cs.wustl.edu/˜schmidt/PDF/COOTS-96.pdf. |
Rappaport, Avi, “Robots & Spiders & Crawlers: How Web and Intranet Search Engines Follow Links To Build Indexes,” Infoseek Software, pp. 1-38 (Oct. 1999). |
Reinhardt, Robert B., “An Architectural Overview of UNIX Network Security,” ARINC Research Corporation, Sep. 19, 1992, retrieved online on Jun. 15, 2006 at http://www.clusit.it/whitepapers/unixnet.pdf. |
Sirbu, Marvin et al., “Netbill: An Internet Commerce System Optimized for Network-Delivered Services,” IEEE Personal Communications, 2(4):34-39, Aug. 1995. |
Tardo, Joseph et al., “Mobile Agent Security and Telescript,” 4th International Conference of the IEEE Computer Society (IEEE CompCon1996), Feb. 1996. |
International Application No. PCT/US2004/028195, Search Report and Written Opinion dated May 2, 2006. |
International Application No. PCT/US2005/041024, Search Report and Written Opinion dated Feb. 27, 2007. |
International Application No. PCT/US2006/010637, Search Report and Written Opinion dated Sep. 25, 2007. |
International Application No. PCT/US2006/010904, Search Report and Written Opinion dated Dec. 26, 2007. |
U.S. Appl. No. 09/996,180, filed Nov. 27, 2001. |
Number | Date | Country | |
---|---|---|---|
20200322221 A1 | Oct 2020 | US |
Number | Date | Country | |
---|---|---|---|
60986261 | Nov 2007 | US | |
60664765 | Mar 2005 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 15723166 | Oct 2017 | US |
Child | 16814604 | US | |
Parent | 15064286 | Mar 2016 | US |
Child | 15723166 | US | |
Parent | 14553873 | Nov 2014 | US |
Child | 15064286 | US | |
Parent | 13962554 | Aug 2013 | US |
Child | 14553873 | US | |
Parent | 13234950 | Sep 2011 | US |
Child | 13962554 | US | |
Parent | 12062789 | Apr 2008 | US |
Child | 13234950 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 11388381 | Mar 2006 | US |
Child | 12062789 | US |