US6718364B2 - Method and apparatus for expedited file downloads in an applet environment - Google Patents
Method and apparatus for expedited file downloads in an applet environment Download PDFInfo
- Publication number
- US6718364B2 US6718364B2 US09/371,437 US37143799A US6718364B2 US 6718364 B2 US6718364 B2 US 6718364B2 US 37143799 A US37143799 A US 37143799A US 6718364 B2 US6718364 B2 US 6718364B2
- Authority
- US
- United States
- Prior art keywords
- file
- applet
- virtual machine
- files
- component
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Lifetime
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/445—Program loading or initiating
Definitions
- the invention relates generally to computer systems. More particularly, methods and apparatus for providing on-demand network application download and execution capabilities in a distributed computer network are disclosed.
- a browser is an application program that provides a way to look at and interact with all the information on the distributed computer networks such as the Internet.
- a Web browser is a client program that uses the Hypertext Transfer Protocol (HTTP) to make requests of Web servers throughout the Internet on behalf of the browser user.
- HTTP Hypertext Transfer Protocol
- JavaTM a programming language developed by Sun Microsystems Inc. of Mountain View Calif., is expressly designed for use in the distributed environment of the Internet. It was designed to have the “look and feel” of the C++ language, but it is simpler to use than C++ and enforces a completely object-oriented view of programming. In this way, Java is used to create complete applications that can run on a single computer or be distributed among servers and clients in a network.
- Java applet is a small program that can be sent along with a Web page to a user that can perform interactive animations, immediate calculations, or other simple tasks without having to send a user request back to the server.
- a distributed computer system 100 includes a client computer 102 that is coupled to a server (host) computer 104 .
- the computer 102 includes a browser application 106 that, in turn, includes a requested Web page 108 having an applet 110 embedded therein capable of performing various tasks.
- the applet 110 is executed by a Java Virtual Machine (JVM) 112 that in this example is also resident in the browser 106 .
- JVM Java Virtual Machine
- the applet's requisite component files (such as “.class files”, images and sounds) represented by files 114 - 118 must be downloaded from the server 104 to the JVM 112 .
- the server 104 is part of a distributed network of computers, such as the Internet, or in some cases could be part of an intranet type of arrangement.
- the files 114 - 118 that are required for the JVM 112 to run the applet 110 include Java class files as well as resource files that are used to support the execution of the applet 110 .
- Such class files includes a main class file, main.class 114 , that is used by the JVM 112 as an entry point for execution of the applet 110 .
- the server 104 also stores other class files such as b.class 116 that are used by the JVM 112 in the furtherance of executing the applet 110 .
- Various image and sound components used in the execution of the applet 110 are stored in resource files such as c.image 118 .
- the JVM 112 In order for the JVM 112 to execute the applet 110 , it may be required to download some of the class and resource files as needed. This is typically accomplished by sending a file request that takes the form of an http request to the server 104 which responds by providing an http response that includes the URL of the requested file.
- the JVM 112 issues a request to retrieve the main class file main.class 114 to which the server 104 responds by sending (i.e., downloading) the requested file (i.e., main.class 114 ).
- This request/response procedure is followed for every file for which the JVM 112 requires to execute the applet 110 .
- JAR Java Archive
- a JAR (Java Archive) file has a platform-independent file format that aggregates many files into one.
- multiple Java applets and their requisite components can be bundled in a JAR file and subsequently downloaded to a browser in a single HTTP transaction thereby greatly improving the download speed.
- the JAR format also supports compression, which reduces the file size, further improving the download time.
- the applet component files 114 - 118 are stored in a single JAR file 120 . Using this arrangement, in order for the JVM 112 to execute the applet 110 , only a single HTTP file request 122 is required to download the compressed JAR file 120 that contains all the applet component files 114 - 118 .
- a class loader When an applet includes multiple JAR files, a class loader will construct an internal search path of JAR files and whenever it tries to load a class or resource file, it would linearly search each JAR file on its search path in the process downloading and opening each of them. If the class loader tries to find a resource file that does not exist at all, then all the JAR files will be downloaded, even if most of them are not needed for the applet to run.
- a method for executing an applet is disclosed.
- a file download request for a root file is provided to a particular server computer by a virtual machine that is used to execute the applet.
- the requested root file includes applet component files used by the virtual machine to execute the applet such that related ones of the component files are grouped into a corresponding package.
- the root file includes an index file that contains information that relates the mapping of the package to corresponding related applet component files.
- a HASH table based upon the contents of the index file is then created that provides a mapping of all packages and all corresponding component files that are used by the virtual machine to execute the applet.
- the HASH table is queried for a location of a particular applet component file after which the particular applet component file is directly downloaded to the virtual machine.
- an apparatus for executing an applet embedded in a browser includes a means for providing a file download request for a root file to a particular server computer by a virtual machine that is used to execute the applet that includes applet component files. Related ones of the component files are grouped into a corresponding package.
- the apparatus also includes a means for determining if the root file includes an index file that contains information that relates the mapping of the package to corresponding related applet component files and a means for creating a HASH table based upon the contents of the index file that provides a mapping of all packages and all corresponding component files that are used by the virtual machine to execute the applet.
- the apparatus also includes a means for querying the HASH table for a location of a particular applet component file during virtual machine runtime as well as a means for directly downloading the particular applet component file based upon the location provided by the HASH table to the virtual machine.
- FIG. 1 shows a conventional distributed computer system capable of supporting a Java based browser/server configuration
- FIG. 2 shows the distributed computer system of FIG. 1 where the various applet components are stored in a single JAR file.
- FIG. 3 shows a distributed computer system arranged to support a Java based browser/server arrangement in accordance with an embodiment of the invention.
- FIGS. 4 a - 4 b is a flowchart detailing a process for a for retrieving and downloading component files by a virtual machine in accordance with an embodiment of the invention
- FIG. 5 illustrates an embodiment of a Java virtual machine in accordance with an embodiment of the invention.
- FIG. 6 illustrates a computer system that can be employed to implement the present invention
- a Java virtual machine that includes a class loader generates a file download request in the form of an http request to a particular server computer that contains the appropriate applet component files.
- the component files include a main class file used as an entry point for execution of the applet as well as other Java class files used in furtherance of the execution of the applet.
- the component files may include image and sound files, referred to more generally as resource files that provide a user interface for the applet.
- related component files are grouped in what is referred to as a package. The package, in turn, is typically compressed and stored in corresponding JAR files within, or coupled to, the server computer.
- multiple packages are stored within a single Java Archive (JAR) file and in other cases, single class files (with no accompanying package) are stored in an appropriately compressed state, if so desired, in a corresponding JAR file.
- a package can be stored amongst more than one JAR file.
- a first JAR file referred to as the root JAR file
- an index file that contains information that relates to the mapping of various packages (or individual class files) and their corresponding JAR files.
- a class loader associated with the Java virtual machine queries the root JAR file and determines whether or not a corresponding index file is present. If an index file is present, the class loader creates a HASH table that is based upon the contents of the index file.
- the HASH table index provides a mapping of all packages and all corresponding JAR files required to execute the applet by the JVM.
- the class loader queries the HASH table in order to directly access the appropriate JAR file to be downloaded. In this way, the need to perform a linear search of all JAR files and component files contained therein is substantially avoided.
- the invention will now be described in terms of a Java Virtual Machine embedded within, or coupled to, a Java based browser resident in a client computer that is typically used to execute a applet.
- the applet has a number of associated component files, such as class and image files, stored in, or coupled to, a server (host) that is connected to the client computer.
- a server host
- the server is coupled to other interconnected computers to form a distributed computer system such as represented by the Internet.
- the invention can be implemented in any system where providing resource efficient on-demand download and execution of files used to, for example, run embedded, or other type, applications is important.
- the system 300 includes a client computer 302 coupled to a server (host) computer 304 .
- the host computer 304 is part of a distributed interconnected computer network (not shown) such as the Internet, but can also be part of a local area network, sometimes referred to as an intranet.
- the client computer 302 utilizes the graphical user interfaces presented by a Web page 306 resident in a Java based browser 308 (sometimes referred to as an http page). Most browsers are formed of various HTTP statements.
- an applet 310 is formed by selectively embedding certain HTTP statements within the HTTP framework of the web page 306 . By embedding various applets within the browser, the browser user can independently run various applications from a single browser thereby facilitating various interactive events between the browser user and the computer network.
- a Java Virtual Machine (JVM) 312 described in detail with reference to FIG. 5, executes the applet 310 in the described embodiment by instantiating a class loader 314 .
- the class loader 314 has the responsibility to retrieve files as directed by the JVM 312 in the execution of the applet 310 .
- various component files stored in the server 304 must be identified by JVM 312 , retrieved by the class loader 314 and ultimately downloaded to the JVM 312 for execution.
- the component files corresponding to the applet are stored in various JAR files.
- a package P 1 contains various class files, file 1.class, file 2.class, and file 3.class, such that the file 1.class (commonly referred to as a main class file) provides an entry point for the JVM 312 to start executing the applet 310 .
- the main class is the first application class loaded by the JVM 312 which when executed by the JVM 312 will invoke additional class loading.
- a package P 2 stored in JAR file JAR 2 includes various additional class files, file 10.class, file 11.class, and 12. class, used in one form or another in the execution of the applet 310 .
- An important aspect to note is that in some cases, a single class file, such as f 00 .class, may not be associated with any particular package.
- the file f 00 .class is not associated with any particular package but is also stored in JAR file JAR 2 .
- a package can be stored in more than one JAR file such that a particular package can be associated with a list of JAR files. Such a situation is shown in FIG. 3 with respect to package P 1 being stored in both JAR file JAR 1 and JAR file JAR 2 .
- the class loader 314 associated with the JVM 312 loads the root JAR file, which in this example, is JAR file JAR 1 .
- the class loader 314 will then determine if an index file 316 that maps all packages to corresponding JAR files is included in the root JAR file JAR 1 . If there exists such an index file, the class loader 314 uses information contained in the index file 316 to create a HASH table 318 .
- the HASH table 318 provides a mapping between all packages associated with the applet 310 and the corresponding JAR files in which those packages can be found. Once the HASH table 318 has been created, the class loader 314 then reads the HASH table 318 to ascertain the JAR file in which the main class file is located (JAR 1 ).
- the class loader 314 directly downloads the appropriate JAR file as indicated by the HASH table 318 and accesses the desired main class file which is then loaded to the JVM 312 .
- the JVM 312 begins execution of the applet 310 . While the JVM 312 is executing the applet 310 , the class loader 314 continues to query the HASH table index 318 for the location of class and/or resource files as requested by the JVM 312 in order to continue executing the applet 310 . In this way, the need to perform linear searching of the class and resource files stored within the various JAR files stored in the host computer 304 is substantially reduced, or in some cases, eliminated. Eventually, execution of the applet 310 ceases. It should be noted that the JVM 312 can execute multiple applets.
- FIGS. 4 a and 4 b illustrate a flowchart detailing a process 400 for downloading and executing files in a distributed network environment in accordance with one embodiment of the invention.
- the process 400 begins in FIG. 4 a at 402 by the browser resident on a client computer requesting and downloading an applet from a server (host) computer.
- a JVM resident on the client computer interprets the main class tags and archive file tags corresponding to the downloaded applet at 404 .
- the main class tags and archive file tags provide the JVM with file identifiers subsequently used to identify the various applet component files stored in memory devices coupled to the host computer.
- the JVM downloads and opens the root jar file which may contain the main class files associated with the applet.
- This particular situation arises when, for example, a single class file is not related to any other class files and is therefore not associated with a particular package. This case is illustrated in FIG. 3 by the f 00 .class file being stored in the JAR file JAR 2 .
- the package name is mapped to the associate JAR file(s) using the HASH table at 420 .
- the linear search algorithm is used to search the JAR files on the return list which are downloaded one by one and searched for the requested class file at 422 . (It should be noted that in some cases the return list could be empty indicating an error)
- the first JAR file is downloaded and searched.
- the requested class file is retrieved and loaded into the JVM at 426 . If, however, the requested file is not in the downloaded JAR file, then a determination is made at 428 whether or not there are additional JAR files on the return list. If there are no additional JAR files, then an error has occurred and an error flag is thrown at 430 . On the other hand, if there are additional JAR files on the return list, then the next JAR file on the return list is downloaded at 432 and control is passed to 424 to determine whether or not the requested file is present in the next downloaded JAR file.
- FIG. 5 is a block diagram of a virtual machine 500 that is suitable for implementing the present invention.
- a computer program e.g., a computer program written in the Java programming language
- source code 502 is provided to a compiler 504 within compiletime environment 506 .
- Compiler 504 translates source code 502 into bytecodes 508 .
- source code 502 is translated into bytecodes 508 at the time source code 502 is created by a software developer.
- Bytecodes 508 may generally be reproduced, downloaded, or otherwise distributed through a network or stored on a storage device.
- bytecodes 508 are platform independent. That is, bytecodes 508 may be executed on substantially any computer system that is running on a suitable virtual machine.
- Bytecodes 508 are provided to a runtime environment 510 , which includes virtual machine 312 .
- Runtime environment 510 may generally be executed using a processor or processors such as processor 602 described below with reference to FIG. 6 .
- Virtual machine 312 includes a compiler 512 , an interpreter 514 , and a runtime system 516 .
- Bytecodes 508 may be provided either to compiler 512 or to interpreter 514 .
- compiler 512 When bytecodes 508 are provided to compiler 512 , methods contained in bytecodes 508 are compiled into machine instructions.
- compiler 512 is a just-in-time compiler, which delays the compilation of methods contained in bytecodes 508 until the methods are about to be executed.
- interpreter 514 When bytecodes 508 are provided to interpreter 514 , bytecodes 508 are read into interpreter 514 one bytecode at a time. Interpreter 514 then performs the operation defined by each bytecode as each bytecode is read into interpreter 514 . That is, interpreter 514 “interprets” bytecodes 508 , as will be appreciated by those skilled in the art.
- runtime system 516 may obtain the method from runtime environment 510 in the form of sequences of bytecodes 508 , which may be directly executed by interpreter 514 . If, on the other hand, the method that is invoked is a compiled method that has not been compiled, runtime system 516 also obtains the method from runtime environment 510 in the form of a sequence of bytecodes 508 , which then may go to activate compiler 512 . Compiler 512 then generates machine instructions from bytecodes 508 and the resulting machine-language instructions may be executed directly by operating system 518 .
- the machine-language instructions are discarded when virtual machine 312 terminates.
- the operation of virtual machines or, more particularly, Java virtual machines is described in more detail in The Java Virtual Machine Specification by Tim Lindholm and Frank Yellin (ISBN 0-201-63452-X), which is incorporated herein by reference.
- FIG. 6 illustrates a computer system 600 that can be employed to implement the present invention.
- the computer system 600 or, more specifically, CPUs 602 may be arranged to support a virtual machine, as will be appreciated by those skilled in the art.
- ROM acts to transfer data and instructions uni-directionally to the CPUs 602
- RAM is used typically to transfer data and instructions in a bidirectional manner.
- CPUs 602 may generally include any number of processors.
- Both primary storage devices 604 , 606 may include any suitable computer-readable media.
- a secondary storage medium 608 which is typically a mass memory device, is also coupled bi-directionally to CPUs 602 and provides additional data storage capacity.
- the mass memory device 608 is a computer-readable medium that may be used to store programs including computer code, data, and the like.
- mass memory device 608 is a storage medium such as a hard disk or a tape which generally slower than primary storage devices 604 , 606 .
- Mass memory storage device 608 may take the form of a magnetic or paper tape reader or some other well-known device. It will be appreciated that the information retained within the mass memory device 608 , may, in appropriate cases, be incorporated in standard fashion as part of RAM 606 as virtual memory.
- a specific primary storage device 604 such as a CD-ROM may also pass data uni-directionally to the CPUs 602 .
- CPUs 602 are also coupled to one or more input/output devices 610 that may include, but are not limited to, devices such as video monitors, track balls, mice, keyboards, microphones, touch-sensitive displays, transducer card readers, magnetic or paper tape readers, tablets, styluses, voice or handwriting recognizers, or other well-known input devices such as, of course, other computers.
- CPUs 602 optionally may be coupled to a computer or telecommunications network, e.g., an Internet network or an intranet network, using a network connection as shown generally at 612 . With such a network connection, it is contemplated that the CPUs 602 might receive information from the network, or might output information to the network in the course of performing the above-described method steps.
- Such information which is often represented as a sequence of instructions to be executed using CPUs 602 , may be received from and outputted to the network, for example, in the form of a computer data signal embodied in a carrier wave.
- the above-described devices and materials will be familiar to those of skill in the computer hardware and software arts.
- the methods of providing efficient file download and execution in a browser environment in accordance with the present invention are particularly suitable for implementation with respect to a JavaTM M based environment, the methods may generally be applied in any suitable object-based environment.
- the methods are suitable for use in platform-independent object-based environments. It should be appreciated that the methods may also be implemented in some distributed object-oriented systems.
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Stored Programmes (AREA)
Priority Applications (3)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US09/371,437 US6718364B2 (en) | 1999-08-10 | 1999-08-10 | Method and apparatus for expedited file downloads in an applet environment |
EP00306806A EP1076290B1 (fr) | 1999-08-10 | 2000-08-09 | Méthode pour charger et exécuter une application de réseau sur demande |
DE60035745T DE60035745T2 (de) | 1999-08-10 | 2000-08-09 | Verfahren zum bei Bedarf Laden und Ausführen einer Netzwerkanwendung |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US09/371,437 US6718364B2 (en) | 1999-08-10 | 1999-08-10 | Method and apparatus for expedited file downloads in an applet environment |
Publications (2)
Publication Number | Publication Date |
---|---|
US20030105888A1 US20030105888A1 (en) | 2003-06-05 |
US6718364B2 true US6718364B2 (en) | 2004-04-06 |
Family
ID=23463997
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US09/371,437 Expired - Lifetime US6718364B2 (en) | 1999-08-10 | 1999-08-10 | Method and apparatus for expedited file downloads in an applet environment |
Country Status (3)
Country | Link |
---|---|
US (1) | US6718364B2 (fr) |
EP (1) | EP1076290B1 (fr) |
DE (1) | DE60035745T2 (fr) |
Cited By (39)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20020161885A1 (en) * | 1999-10-27 | 2002-10-31 | Netbotz Inc. | Methods for displaying physical network topology and environmental status by location, organization, or responsible party |
US20020165879A1 (en) * | 2000-12-12 | 2002-11-07 | Jacob Dreyband | TD/TDX universal data presentation system and method |
US20020174161A1 (en) * | 2001-05-18 | 2002-11-21 | Scheetz Michael A. | Java startup wrapper |
US20030051073A1 (en) * | 2001-08-15 | 2003-03-13 | Debi Mishra | Lazy loading with code conversion |
US20030101438A1 (en) * | 2001-08-15 | 2003-05-29 | Debi Mishra | Semantics mapping between different object hierarchies |
US20030233483A1 (en) * | 2002-04-23 | 2003-12-18 | Secure Resolutions, Inc. | Executing software in a network environment |
US20040073903A1 (en) * | 2002-04-23 | 2004-04-15 | Secure Resolutions,Inc. | Providing access to software over a network via keys |
US20040150637A1 (en) * | 2002-12-12 | 2004-08-05 | Samsung Electronics Co., Ltd. | Method and apparatus for displaying markup document linked to applet |
US20040160897A1 (en) * | 1999-10-27 | 2004-08-19 | Netbotz, Inc. | Method and system for monitoring computer networks and equipment |
US20040163087A1 (en) * | 2003-02-14 | 2004-08-19 | Carl Sandland | Computer program code and method for delivering external data to a process running on a virtual machine |
US20040172407A1 (en) * | 2003-02-28 | 2004-09-02 | Arpirez Vega Julio Cesar | Method and system of processing an encapsulated file at a management computer |
US20050028152A1 (en) * | 2003-08-01 | 2005-02-03 | International Business Machines Corporation | Method and apparatus for identifying a Java class package name without disassembling Java bytecodes |
US20050177587A1 (en) * | 2001-09-29 | 2005-08-11 | Anil Mukundan | Method, apparatus, and system for immediate posting of changes in a client server environment |
US7127707B1 (en) | 2002-10-10 | 2006-10-24 | Microsoft Corporation | Intellisense in project upgrade |
US20060238339A1 (en) * | 2003-04-14 | 2006-10-26 | Michael Primm | Extensible Sensor Monitoring, Alert Processing and Notification system and Method |
US20070016639A1 (en) * | 2001-09-29 | 2007-01-18 | Anil Mukundan | Method, apparatus, and system for managing status of requests in a client server environment |
US20070061797A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | Bulk loading system and method |
US20070061795A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | Method and system for automated code-source indexing in java virtual machine environment |
US20070061796A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | Shared loader system and method |
US20070061798A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | System and method for shared code-sourcing in a Java Virtual Machine environment |
US20070088688A1 (en) * | 2002-05-03 | 2007-04-19 | Gary Faulkner | Method and apparatus for collecting and displaying network device information |
US20070106749A1 (en) * | 2002-04-23 | 2007-05-10 | Secure Resolutions, Inc. | Software distribution via stages |
US20070180361A1 (en) * | 2001-07-11 | 2007-08-02 | International Business Machines Corporation | Method and system for dynamic web page breadcrumbing using javascript |
US20070199006A1 (en) * | 2001-09-29 | 2007-08-23 | Anil Mukundan | Method, apparatus, and system for implementing caching of view custom options in a framework to support web-based applications |
US7401133B2 (en) | 2002-04-23 | 2008-07-15 | Secure Resolutions, Inc. | Software administration in an application service provider scenario via configuration directives |
US20080263150A1 (en) * | 2001-01-26 | 2008-10-23 | American Power Conversion Corporation | Methods for displaying physical network topology and environmental status by location, organization, or responsible party |
US20090083732A1 (en) * | 2007-09-26 | 2009-03-26 | Microsoft Corporation | Creation and deployment of distributed, extensible applications |
US20090328028A1 (en) * | 2008-06-25 | 2009-12-31 | O'rourke Connor | Electronic documents and methods for updating resource files for an application |
US20100070960A1 (en) * | 2005-09-12 | 2010-03-18 | Oracle International Corporation | Method and system for automated root-cause analysis for class loading failures in java |
US20100235615A1 (en) * | 2009-03-13 | 2010-09-16 | Sun Microsystems, Inc. | Method and system for discovery of a root file system |
US7870492B2 (en) | 2001-10-02 | 2011-01-11 | Siebel Systems, Inc. | Method, apparatus, and system for managing commands in a client server environment |
US7885996B2 (en) | 2001-09-29 | 2011-02-08 | Siebel Systems, Inc. | Method, apparatus, and system for implementing notifications in a framework to support web-based applications |
US8146097B2 (en) | 2001-09-29 | 2012-03-27 | Siebel Systems, Inc. | Method, apparatus, and system for implementing view caching in a framework to support web-based applications |
US8224953B2 (en) | 1999-10-27 | 2012-07-17 | American Power Conversion Corporation | Method and apparatus for replay of historical data |
US8359335B2 (en) | 2001-09-29 | 2013-01-22 | Siebel Systems, Inc. | Computing system and method to implicitly commit unsaved data for a world wide web application |
US20130042228A1 (en) * | 1998-03-18 | 2013-02-14 | Edward Balassanian | Application server |
US9952103B2 (en) | 2011-12-22 | 2018-04-24 | Schneider Electric It Corporation | Analysis of effect of transient events on temperature in a data center |
US10114666B1 (en) * | 2009-09-30 | 2018-10-30 | EMC IP Holding Company LLC | Loading software components |
US11076507B2 (en) | 2007-05-15 | 2021-07-27 | Schneider Electric It Corporation | Methods and systems for managing facility power and cooling |
Families Citing this family (50)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US6874143B1 (en) | 2000-06-21 | 2005-03-29 | Microsoft Corporation | Architectures for and methods of providing network-based software extensions |
US7117435B1 (en) | 2000-06-21 | 2006-10-03 | Microsoft Corporation | Spreadsheet fields in text |
US7155667B1 (en) | 2000-06-21 | 2006-12-26 | Microsoft Corporation | User interface for integrated spreadsheets and word processing tables |
US7191394B1 (en) | 2000-06-21 | 2007-03-13 | Microsoft Corporation | Authoring arbitrary XML documents using DHTML and XSLT |
US7346848B1 (en) | 2000-06-21 | 2008-03-18 | Microsoft Corporation | Single window navigation methods and systems |
US7000230B1 (en) | 2000-06-21 | 2006-02-14 | Microsoft Corporation | Network-based software extensions |
US7624356B1 (en) | 2000-06-21 | 2009-11-24 | Microsoft Corporation | Task-sensitive methods and systems for displaying command sets |
US6883168B1 (en) | 2000-06-21 | 2005-04-19 | Microsoft Corporation | Methods, systems, architectures and data structures for delivering software via a network |
US6948135B1 (en) | 2000-06-21 | 2005-09-20 | Microsoft Corporation | Method and systems of providing information to computer users |
GB2374165A (en) * | 2001-04-02 | 2002-10-09 | Global Knowledge Network | Secure distribution of electronic media |
GB0125176D0 (en) * | 2001-10-19 | 2001-12-12 | Koninkl Philips Electronics Nv | A method of compiling bytecode to native code |
JP2003173246A (ja) * | 2001-12-05 | 2003-06-20 | Ricoh Co Ltd | デバイス情報収集方法、プログラム、サーバ装置及び記憶媒体 |
US7415672B1 (en) | 2003-03-24 | 2008-08-19 | Microsoft Corporation | System and method for designing electronic forms |
US7370066B1 (en) | 2003-03-24 | 2008-05-06 | Microsoft Corporation | System and method for offline editing of data files |
US7913159B2 (en) | 2003-03-28 | 2011-03-22 | Microsoft Corporation | System and method for real-time validation of structured data files |
US7296017B2 (en) | 2003-03-28 | 2007-11-13 | Microsoft Corporation | Validation of XML data files |
US7451392B1 (en) | 2003-06-30 | 2008-11-11 | Microsoft Corporation | Rendering an HTML electronic form by applying XSLT to XML using a solution |
US7406660B1 (en) | 2003-08-01 | 2008-07-29 | Microsoft Corporation | Mapping between structured data and a visual surface |
US7334187B1 (en) | 2003-08-06 | 2008-02-19 | Microsoft Corporation | Electronic form aggregation |
US20050155024A1 (en) * | 2004-01-14 | 2005-07-14 | Jeffrey Wannamaker | Method of transforming java bytecode into a directly interpretable compressed format |
US8819072B1 (en) | 2004-02-02 | 2014-08-26 | Microsoft Corporation | Promoting data from structured data files |
US7496837B1 (en) | 2004-04-29 | 2009-02-24 | Microsoft Corporation | Structural editing with schema awareness |
US7281018B1 (en) | 2004-05-26 | 2007-10-09 | Microsoft Corporation | Form template data source change |
US7774620B1 (en) | 2004-05-27 | 2010-08-10 | Microsoft Corporation | Executing applications at appropriate trust levels |
US7877465B2 (en) * | 2004-07-14 | 2011-01-25 | International Business Machines Corporation | Providing artifact and configuration cohesion across disparate portal application models |
JP4745238B2 (ja) * | 2004-08-12 | 2011-08-10 | 富士通株式会社 | Javaアプレット、JARファイル生成方法、JARファイル生成プログラム、JARファイル生成装置 |
US7692636B2 (en) | 2004-09-30 | 2010-04-06 | Microsoft Corporation | Systems and methods for handwriting to a screen |
US8487879B2 (en) | 2004-10-29 | 2013-07-16 | Microsoft Corporation | Systems and methods for interacting with a computer through handwriting to a screen |
US7712022B2 (en) | 2004-11-15 | 2010-05-04 | Microsoft Corporation | Mutually exclusive options in electronic forms |
US7721190B2 (en) | 2004-11-16 | 2010-05-18 | Microsoft Corporation | Methods and systems for server side form processing |
US7904801B2 (en) | 2004-12-15 | 2011-03-08 | Microsoft Corporation | Recursive sections in electronic forms |
US9535679B2 (en) * | 2004-12-28 | 2017-01-03 | International Business Machines Corporation | Dynamically optimizing applications within a deployment server |
US7937651B2 (en) | 2005-01-14 | 2011-05-03 | Microsoft Corporation | Structural editing operations for network forms |
US7725834B2 (en) | 2005-03-04 | 2010-05-25 | Microsoft Corporation | Designer-created aspect for an electronic form template |
US8010515B2 (en) | 2005-04-15 | 2011-08-30 | Microsoft Corporation | Query to an electronic form |
CA2607495A1 (fr) * | 2005-04-18 | 2006-10-26 | Research In Motion Limited | Systeme et procede pour l'hebergement efficace d'applications sans fil par le codage de definition de composantes d'application |
US8200975B2 (en) | 2005-06-29 | 2012-06-12 | Microsoft Corporation | Digital signatures for network forms |
US8001459B2 (en) | 2005-12-05 | 2011-08-16 | Microsoft Corporation | Enabling electronic documents for limited-capability computing devices |
US7779343B2 (en) | 2006-01-30 | 2010-08-17 | Microsoft Corporation | Opening network-enabled electronic documents |
US20080027945A1 (en) * | 2006-07-28 | 2008-01-31 | Nichols Paul H | Methods, systems and computer program products for downloading a Java application based on identification of supported classes |
US7818537B2 (en) | 2007-07-19 | 2010-10-19 | International Business Machines Corporation | Method and system for dynamically determining hash function values for file transfer integrity validation |
US20120226738A1 (en) * | 2011-03-04 | 2012-09-06 | Zynga Inc. | Simultaneous download of application file portions |
CN103473089A (zh) * | 2013-09-02 | 2013-12-25 | 深圳市华傲数据技术有限公司 | 一种分布式java程序运行方法、装置和系统 |
WO2016043530A1 (fr) | 2014-09-18 | 2016-03-24 | Samsung Electronics Co., Ltd. | Système et procédé pour fournir un service par l'intermédiaire d'une application |
KR102321361B1 (ko) * | 2014-09-18 | 2021-11-04 | 삼성전자주식회사 | 애플리케이션을 통하여 서비스를 제공하는 시스템 및 방법 |
US9880824B2 (en) | 2015-06-05 | 2018-01-30 | Apple Inc. | On demand resources |
US10447812B2 (en) | 2015-06-05 | 2019-10-15 | Apple Inc. | On demand resources |
CN105306602A (zh) * | 2015-11-30 | 2016-02-03 | 用友优普信息技术有限公司 | 超文本传输协议请求的处理方法、处理装置和服务器 |
US11824840B1 (en) * | 2019-02-04 | 2023-11-21 | Meixler Technologies, Inc. | System and method for web-browser based end-to-end encrypted messaging and for securely implementing cryptography using client-side scripting in a web browser |
CN117270887B (zh) * | 2023-11-22 | 2024-03-19 | 广州嘉为科技有限公司 | 一种Spring微服务的管理方法、装置及存储介质 |
Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP0817031A2 (fr) | 1996-07-03 | 1998-01-07 | Sun Microsystems, Inc. | Utilisation d'un système orienté objet distribué pour trouver et télécharger des applications basées sur Java |
US5937411A (en) * | 1997-11-21 | 1999-08-10 | International Business Machines Corporation | Method and apparatus for creating storage for java archive manifest file |
US6023710A (en) * | 1997-12-23 | 2000-02-08 | Microsoft Corporation | System and method for long-term administration of archival storage |
US6286051B1 (en) * | 1997-11-12 | 2001-09-04 | International Business Machines Corporation | Method and apparatus for extending a java archive file |
US6405246B1 (en) * | 1998-09-22 | 2002-06-11 | International Business Machines Corporation | Automatic and dynamic software code management |
-
1999
- 1999-08-10 US US09/371,437 patent/US6718364B2/en not_active Expired - Lifetime
-
2000
- 2000-08-09 DE DE60035745T patent/DE60035745T2/de not_active Expired - Lifetime
- 2000-08-09 EP EP00306806A patent/EP1076290B1/fr not_active Expired - Lifetime
Patent Citations (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
EP0817031A2 (fr) | 1996-07-03 | 1998-01-07 | Sun Microsystems, Inc. | Utilisation d'un système orienté objet distribué pour trouver et télécharger des applications basées sur Java |
US6286051B1 (en) * | 1997-11-12 | 2001-09-04 | International Business Machines Corporation | Method and apparatus for extending a java archive file |
US5937411A (en) * | 1997-11-21 | 1999-08-10 | International Business Machines Corporation | Method and apparatus for creating storage for java archive manifest file |
US6023710A (en) * | 1997-12-23 | 2000-02-08 | Microsoft Corporation | System and method for long-term administration of archival storage |
US6405246B1 (en) * | 1998-09-22 | 2002-06-11 | International Business Machines Corporation | Automatic and dynamic software code management |
Non-Patent Citations (3)
Title |
---|
"Cygnus Support: Unix Man Pages", Online!, Nov. 5, 1991. |
"Java Threads" O'Relly Publishing, 1997. Retrieved from: http://www.oreilly.com/catalog/jthreads/excerpt/ch01.html.* * |
R. Pesch, "The GNU Binary Utilities", Online!, May 1993. |
Cited By (68)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20130042228A1 (en) * | 1998-03-18 | 2013-02-14 | Edward Balassanian | Application server |
US9325740B2 (en) | 1998-03-18 | 2016-04-26 | Implicit, Llc | Application server for delivering applets to client computing devices in a distributed environment |
US9848031B2 (en) | 1998-03-18 | 2017-12-19 | Implicit, Llc | Application server for delivering applets to client computing devices in a distributed environment |
US8856779B2 (en) * | 1998-03-18 | 2014-10-07 | Implicit, Llc | Application server for delivering applets to client computing devices in a distributed environment |
US20040160897A1 (en) * | 1999-10-27 | 2004-08-19 | Netbotz, Inc. | Method and system for monitoring computer networks and equipment |
US8224953B2 (en) | 1999-10-27 | 2012-07-17 | American Power Conversion Corporation | Method and apparatus for replay of historical data |
US8005944B2 (en) | 1999-10-27 | 2011-08-23 | American Power Conversion Corporation | Method and system for monitoring computer networks and equipment |
US20020161885A1 (en) * | 1999-10-27 | 2002-10-31 | Netbotz Inc. | Methods for displaying physical network topology and environmental status by location, organization, or responsible party |
US8024451B2 (en) | 1999-10-27 | 2011-09-20 | American Power Conversion Corporation | Method and system for monitoring computer networks and equipment |
US8090817B2 (en) | 1999-10-27 | 2012-01-03 | American Power Conversion Corporation | Method and system for monitoring computer networks and equipment |
US7392309B2 (en) * | 1999-10-27 | 2008-06-24 | American Power Conversion Corporation | Network appliance management |
US20020165879A1 (en) * | 2000-12-12 | 2002-11-07 | Jacob Dreyband | TD/TDX universal data presentation system and method |
US8271626B2 (en) | 2001-01-26 | 2012-09-18 | American Power Conversion Corporation | Methods for displaying physical network topology and environmental status by location, organization, or responsible party |
US20080263150A1 (en) * | 2001-01-26 | 2008-10-23 | American Power Conversion Corporation | Methods for displaying physical network topology and environmental status by location, organization, or responsible party |
US8966044B2 (en) | 2001-01-26 | 2015-02-24 | Schneider Electric It Corporation | Methods for displaying physical network topology and environmental status by location, organization, or responsible party |
US20020174161A1 (en) * | 2001-05-18 | 2002-11-21 | Scheetz Michael A. | Java startup wrapper |
US8539330B2 (en) * | 2001-07-11 | 2013-09-17 | International Business Machines Corporation | Method and system for dynamic web page breadcrumbing using javascript |
US20070180361A1 (en) * | 2001-07-11 | 2007-08-02 | International Business Machines Corporation | Method and system for dynamic web page breadcrumbing using javascript |
US20030051073A1 (en) * | 2001-08-15 | 2003-03-13 | Debi Mishra | Lazy loading with code conversion |
US20030101438A1 (en) * | 2001-08-15 | 2003-05-29 | Debi Mishra | Semantics mapping between different object hierarchies |
US6961932B2 (en) | 2001-08-15 | 2005-11-01 | Microsoft Corporation | Semantics mapping between different object hierarchies |
US7076785B2 (en) * | 2001-08-15 | 2006-07-11 | Microsoft Corporation | Lazy loading with code conversion |
US7603677B2 (en) | 2001-09-29 | 2009-10-13 | Siebel Systems Inc. | Method, apparatus, and system for implementing caching of view custom options in a framework to support web-based applications |
US8359335B2 (en) | 2001-09-29 | 2013-01-22 | Siebel Systems, Inc. | Computing system and method to implicitly commit unsaved data for a world wide web application |
US7962551B2 (en) | 2001-09-29 | 2011-06-14 | Siebel Systems, Inc. | Method, apparatus, and system for immediate posting of changes in a client server environment |
US20070199006A1 (en) * | 2001-09-29 | 2007-08-23 | Anil Mukundan | Method, apparatus, and system for implementing caching of view custom options in a framework to support web-based applications |
US8146097B2 (en) | 2001-09-29 | 2012-03-27 | Siebel Systems, Inc. | Method, apparatus, and system for implementing view caching in a framework to support web-based applications |
US7885996B2 (en) | 2001-09-29 | 2011-02-08 | Siebel Systems, Inc. | Method, apparatus, and system for implementing notifications in a framework to support web-based applications |
US20050177587A1 (en) * | 2001-09-29 | 2005-08-11 | Anil Mukundan | Method, apparatus, and system for immediate posting of changes in a client server environment |
US7461119B2 (en) * | 2001-09-29 | 2008-12-02 | Siebel Systems, Inc. | Method, apparatus, and system for managing status of requests in a client server environment |
US20070016639A1 (en) * | 2001-09-29 | 2007-01-18 | Anil Mukundan | Method, apparatus, and system for managing status of requests in a client server environment |
US7870492B2 (en) | 2001-10-02 | 2011-01-11 | Siebel Systems, Inc. | Method, apparatus, and system for managing commands in a client server environment |
US20030233483A1 (en) * | 2002-04-23 | 2003-12-18 | Secure Resolutions, Inc. | Executing software in a network environment |
US7401133B2 (en) | 2002-04-23 | 2008-07-15 | Secure Resolutions, Inc. | Software administration in an application service provider scenario via configuration directives |
US20070106749A1 (en) * | 2002-04-23 | 2007-05-10 | Secure Resolutions, Inc. | Software distribution via stages |
US20040073903A1 (en) * | 2002-04-23 | 2004-04-15 | Secure Resolutions,Inc. | Providing access to software over a network via keys |
US8719319B2 (en) | 2002-05-03 | 2014-05-06 | Schneider Electric It Corporation | Method and apparatus for collecting and displaying network device information |
US7958170B2 (en) | 2002-05-03 | 2011-06-07 | American Power Conversion Corporation | Method and apparatus for collecting and displaying data associated with network devices |
US20070088688A1 (en) * | 2002-05-03 | 2007-04-19 | Gary Faulkner | Method and apparatus for collecting and displaying network device information |
US8019798B2 (en) | 2002-05-03 | 2011-09-13 | American Power Conversion Corporation | Method and apparatus for collecting and displaying network device information |
US7127707B1 (en) | 2002-10-10 | 2006-10-24 | Microsoft Corporation | Intellisense in project upgrade |
US20040150637A1 (en) * | 2002-12-12 | 2004-08-05 | Samsung Electronics Co., Ltd. | Method and apparatus for displaying markup document linked to applet |
US20040163087A1 (en) * | 2003-02-14 | 2004-08-19 | Carl Sandland | Computer program code and method for delivering external data to a process running on a virtual machine |
US20040172407A1 (en) * | 2003-02-28 | 2004-09-02 | Arpirez Vega Julio Cesar | Method and system of processing an encapsulated file at a management computer |
US9164750B2 (en) * | 2003-02-28 | 2015-10-20 | Hewlett-Packard Development Company, L.P. | Managing target computer using encapsulated file |
US20160020951A1 (en) * | 2003-02-28 | 2016-01-21 | Hewlett-Packard Development Company, L.P. | Managing target computer using encapsulated file |
US20060238339A1 (en) * | 2003-04-14 | 2006-10-26 | Michael Primm | Extensible Sensor Monitoring, Alert Processing and Notification system and Method |
US20050028152A1 (en) * | 2003-08-01 | 2005-02-03 | International Business Machines Corporation | Method and apparatus for identifying a Java class package name without disassembling Java bytecodes |
US8799885B2 (en) | 2005-09-12 | 2014-08-05 | Oracle International Corporation | Method and system for automated root-cause analysis for class loading failures in java |
US20100070960A1 (en) * | 2005-09-12 | 2010-03-18 | Oracle International Corporation | Method and system for automated root-cause analysis for class loading failures in java |
US20110023020A1 (en) * | 2005-09-12 | 2011-01-27 | Oracle International Corporation | Method and system for automated code-source indexing in java virtual machine environment |
US7814472B2 (en) | 2005-09-12 | 2010-10-12 | Oracle International Corporation | System and method for shared code-sourcing in a Java Virtual Machine environment |
US8332835B2 (en) | 2005-09-12 | 2012-12-11 | Oracle International Corporation | Method and system for automated code-source indexing in java virtual machine environment |
US7954096B2 (en) | 2005-09-12 | 2011-05-31 | Oracle International Corporation | Shared loader system and method |
US7784043B2 (en) * | 2005-09-12 | 2010-08-24 | Oracle International Corporation | Method and system for automated code-source indexing in Java Virtual Machine environment |
US20070061797A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | Bulk loading system and method |
US20070061795A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | Method and system for automated code-source indexing in java virtual machine environment |
US20070061796A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | Shared loader system and method |
US8020156B2 (en) | 2005-09-12 | 2011-09-13 | Oracle International Corporation | Bulk loading system and method |
US20070061798A1 (en) * | 2005-09-12 | 2007-03-15 | Oracle International Corporation | System and method for shared code-sourcing in a Java Virtual Machine environment |
US11503744B2 (en) | 2007-05-15 | 2022-11-15 | Schneider Electric It Corporation | Methods and systems for managing facility power and cooling |
US11076507B2 (en) | 2007-05-15 | 2021-07-27 | Schneider Electric It Corporation | Methods and systems for managing facility power and cooling |
US20090083732A1 (en) * | 2007-09-26 | 2009-03-26 | Microsoft Corporation | Creation and deployment of distributed, extensible applications |
US20090328028A1 (en) * | 2008-06-25 | 2009-12-31 | O'rourke Connor | Electronic documents and methods for updating resource files for an application |
US20100235615A1 (en) * | 2009-03-13 | 2010-09-16 | Sun Microsystems, Inc. | Method and system for discovery of a root file system |
US8112620B2 (en) * | 2009-03-13 | 2012-02-07 | Oracle America, Inc. | Method and system for discovery of a root file system |
US10114666B1 (en) * | 2009-09-30 | 2018-10-30 | EMC IP Holding Company LLC | Loading software components |
US9952103B2 (en) | 2011-12-22 | 2018-04-24 | Schneider Electric It Corporation | Analysis of effect of transient events on temperature in a data center |
Also Published As
Publication number | Publication date |
---|---|
EP1076290B1 (fr) | 2007-08-01 |
DE60035745D1 (de) | 2007-09-13 |
EP1076290A2 (fr) | 2001-02-14 |
DE60035745T2 (de) | 2008-04-30 |
EP1076290A3 (fr) | 2003-10-08 |
US20030105888A1 (en) | 2003-06-05 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US6718364B2 (en) | Method and apparatus for expedited file downloads in an applet environment | |
EP1131709B1 (fr) | Procede et dispositif d'optimisation automatique de l'execution d'un programme informatique | |
US6401099B1 (en) | Asynchronous binding of named objects | |
US6363433B1 (en) | Method and mechanism for client-side handling of extensions originally written for servers | |
US6321275B1 (en) | Interpreted remote procedure calls | |
US5875335A (en) | Parameter marshaling techniques for dynamic object-oriented programming languages | |
US6718538B1 (en) | Method and apparatus for hybrid checkpointing | |
US7278132B2 (en) | Mechanism for automatic synchronization of scripting variables | |
US7730499B2 (en) | Protocol agnostic request response pattern | |
US6453467B2 (en) | Methods and apparatus for linking a program for remote execution | |
US6067577A (en) | Dynamic method resolution for native methods in a dynamic object-oriented programming language | |
US7093243B2 (en) | Software mechanism for efficient compiling and loading of java server pages (JSPs) | |
US6996707B2 (en) | Method, system, and article of manufacture for limiting access to program files in a shared library file | |
US7490332B2 (en) | System and method for accessing ActiveX objects in a platform dependent environment from objects in a platform independent environment | |
US20030056029A1 (en) | Method and apparatus for customizing Java API implementations | |
US6442558B1 (en) | Mechanisms for division, storage, reconstruction, generation, and delivery of java class files | |
US20040103114A1 (en) | System and method for accessing objects in a platform dependent environment from a platform independent environment | |
US20070198475A1 (en) | Collaborative classloader system and method | |
JP2000155686A (ja) | 分散システム中におけるプログラム実行方法及びその装置、分散システム中におけるプログラム実行手順を記憶したコンピュ―タ読み書き可能な記憶媒体及びコンピュ―タシステム | |
US6886157B2 (en) | Method and apparatus for creating efficient native methods that extend a bytecode interpreter | |
KR20010034542A (ko) | 네트워크를 통한 동적 분산 컴퓨팅 방법 및 장치 | |
US20040019897A1 (en) | Method, system, and program for processing objects in a distributed computing environment | |
US6516354B2 (en) | Method and apparatus for efficient representation of variable length identifiers in a distributed object system | |
US6339829B1 (en) | Method and apparatus to store extended security information in a data structure which shadows a java class object | |
US6633864B1 (en) | Method and apparatus for multi-threaded based search of documents |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: SUN MICROSYSTEMS, INC., CALIFORNIA Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:CONNELLY, DAVID;LI, ZHENGHUA;REEL/FRAME:010304/0883;SIGNING DATES FROM 19990827 TO 19990831 |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |
|
FPAY | Fee payment |
Year of fee payment: 4 |
|
FPAY | Fee payment |
Year of fee payment: 8 |
|
FPAY | Fee payment |
Year of fee payment: 12 |
|
AS | Assignment |
Owner name: ORACLE AMERICA, INC., CALIFORNIA Free format text: MERGER AND CHANGE OF NAME;ASSIGNORS:ORACLE USA, INC.;SUN MICROSYSTEMS, INC.;ORACLE AMERICA, INC.;REEL/FRAME:037278/0757 Effective date: 20100212 |