[go: up one dir, main page]

US7797697B2 - System and method for deploying applications with library modules - Google Patents

System and method for deploying applications with library modules Download PDF

Info

Publication number
US7797697B2
US7797697B2 US10/969,089 US96908904A US7797697B2 US 7797697 B2 US7797697 B2 US 7797697B2 US 96908904 A US96908904 A US 96908904A US 7797697 B2 US7797697 B2 US 7797697B2
Authority
US
United States
Prior art keywords
library module
application
version
deployment
implementation
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.)
Active, expires
Application number
US10/969,089
Other versions
US20050251810A1 (en
Inventor
Rob Woollen
Ruslan Bilorusets
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Oracle International Corp
Original Assignee
BEA Systems Inc
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by BEA Systems Inc filed Critical BEA Systems Inc
Priority to US10/969,089 priority Critical patent/US7797697B2/en
Assigned to BEA SYSTEMS, INC. reassignment BEA SYSTEMS, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BILORUSETS, RUSLAN, WOOLLEN, ROB
Priority to PCT/US2005/014430 priority patent/WO2005114392A1/en
Publication of US20050251810A1 publication Critical patent/US20050251810A1/en
Application granted granted Critical
Publication of US7797697B2 publication Critical patent/US7797697B2/en
Assigned to ORACLE INTERNATIONAL CORPORATION reassignment ORACLE INTERNATIONAL CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BEA SYSTEMS, INC.
Active legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING OR CALCULATING; COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • G06F8/61Installation

Definitions

  • the present invention relates to systems, methods, and computer readable media for structuring and deploying applications.
  • JavaTM programming language Since its inception in 1995, the JavaTM programming language has become increasingly popular. (Java is a trademark of Sun Microsystems, Inc.) Java, which is an interpreted language, enabled the creation of applications which could be run on a wide variety of platforms. This ability to function across a variety of different client platforms and Java's relatively easy implementation of network applications has resulted in its use in endeavors as basic as personal web pages to endeavors as complex as large business-to-business enterprise systems.
  • the application 10 also includes a deployment descriptor 38 which stores information necessary for the deployment tool 25 to successfully deploy the application.
  • the deployment descriptor is an application.xml file.
  • files ending with an “xml” filename extension are files in the eXtensible Markup Language (XML) format.
  • the deployment descriptor preferably includes elements indicating each module used in the application, its type, and its path in the EAR file storing the application. If a common module 35 is used in each of the applications 10 , 15 , 20 it will appear in each of the EAR files, with its existence and location in the EAR referenced in the deployment descriptor 38 for the applications.
  • the deployment descriptor 38 typically lists the location of the file in the EAR relative to a root of the EAR.
  • the deployment tool 25 is responsible for deploying the applications 10 , 15 , 20 from the server storage to generate the deployed applications 40 , 45 , 50 .
  • the deployment tool runs when the server is started and automatically deploys a group of preselected applications.
  • the deployment tool allows a system administrator to manually select which applications are deployed.
  • the deployment tool checks the deployment descriptors 38 of each of the applications 10 , 15 , 20 to locate the modules 30 , 35 used by the application within that application's EAR file and to deploy the application.
  • the deployed applications are then available for use by remote clients or any party interacting with the web server.
  • FIG. 1 illustrates an embodiment of an application deployment environment as practiced in the prior art.
  • FIG. 2 illustrates an application environment in accordance with one embodiment of the present invention.
  • FIG. 3 illustrates the structure of a library module.
  • FIG. 4 is a flow chart illustrating a process for deploying a federated application.
  • federated applications are configured to use both modules created for the applications as well as library modules which perform commonly used functions.
  • the library modules are stored separately for deployment when utilized by applications.
  • a deployment descriptor is configured with descriptions of internal modules and references to library modules.
  • a deployment tool reads the deployment descriptor, extracts the library modules according to the information stored in the deployment descriptor, and loads the modules specific to the application.
  • FIG. 2 illustrates an application environment in accordance with one embodiment of the present invention.
  • the server storage 105 stores applications 110 , 115 , 120 . These applications are stored in archives such as EAR files.
  • the server storage 105 also includes library modules 128 .
  • the library modules are commonly-used modules that are stored for deployment with created applications.
  • the library modules are preferably stored in Java ARchive (JAR) files.
  • JAR Java ARchive
  • each JAR file stores a single library module.
  • multiple library modules are stored in a single JAR file.
  • the library modules typically include a manifest identifying the library module, class files, a deployment descriptor, and additional resources. The structure of the library modules is described in greater detail with respect to FIG. 3 .
  • the library modules are typically registered with the server by including a reference to the library in the server's configuration parameters.
  • the configuration parameters include a config.XML file.
  • the server detects the reference to the library and generates a configuration bean associated with the library.
  • the reference to the library preferably includes a unique name for the library, a type for the library, a version of the library, and a location of the JAR file storing the library.
  • a config.XML entry for a library file is disclosed below:
  • the applications 110 , 115 , 120 include application modules 130 which are modules that have been created for the particular application and are either not commonly utilized or not commonly utilized enough to justify their inclusion with the library modules 125 .
  • the applications also include deployment descriptors 155 .
  • the deployment descriptor is an application.xml file.
  • the deployment descriptor preferably includes information necessary for representing the application in different GUI tools, elements indicating each module used in the application, its type, and its path in the EAR file storing the application.
  • the application deployment descriptor includes references to the library modules 128 utilized by the application.
  • the reference to the library module includes the library name, which uniquely identifies the library and is compared to the library name included in either the library's manifest or the config.XML file.
  • the entry includes a module-url which indicates a location on the server 105 where the library module can be located.
  • the deployment tool 125 is responsible for deploying the applications 110 , 115 , 120 from the server storage to generate the deployed applications 140 , 145 , 150 .
  • the deployment tool runs when the server is started and automatically deploys a group of preselected applications.
  • the deployment tool allows a system administrator to manually select which applications are deployed.
  • the deployment tool when deploying an application 110 , checks the deployment descriptor 155 .
  • the deployment tool first checks the library module reference to determine whether there are any library modules referenced by the application 110 . If so, the deployment tool uses the identifier for the library module to locate the library module on the server storage 105 .
  • the deployment tool 125 then extracts any referenced library modules from the JAR files in which the library file is archived in the order in which the library modules are listed in the deployment descriptor. Alternately the deployment tool 125 can directly deploy the library module from the location where it is stored. If the JAR file contains multiple library modules, all of the library modules in the JAR file are deployed.
  • the deployment tool 125 then deploys any application modules 136 within the application 110 .
  • FIG. 3 illustrates the structure of a library module.
  • the library module includes a manifest 310 , class files 315 , a deployment descriptor 320 , and additional resources 325 .
  • the manifest 310 stores information for uniquely identifying the module to the web server and includes the library name 330 , implementation title 335 , and implementation version 340 .
  • the manifest 310 also includes a specification version indicating a minimum extension specification version that is needed for extensions to the library module.
  • the key that is used for identifying a library module consists of name/specification version/implementation version.
  • the library name 330 is the unique identifier used to identify the module.
  • the library name is used by the deployment tool 125 to identify the module when referenced by the application.xml file in the application 120 .
  • the implementation title 335 is a string that uniquely identifies the title of the library implementation.
  • the implementation version 340 indicates a version of the implementation of the library module that is stored on the server storage. The web server preferably compares the implementation version 340 and library name 330 of the stored library module to the name and implementation version in the application.xml file of the associated application. In one embodiment, if the library name and implementation version do not match, the deployment tool 125 will not extract the library module.
  • the library module also includes class files 315 .
  • the class files are classes which contain the functionality of the module.
  • the library module also includes additional resources 325 .
  • the additional resources include static content files for use by the library module 315 .
  • the library module additionally includes a deployment descriptor 320 .
  • the deployment descriptor preferably includes information necessary for representing the library module in different GUI tools, elements indicating each module used in the library module and its type and path in the JAR file storing the library module.
  • the library module can include a standard web-application deployment descriptor.
  • FIG. 4 is a flow chart illustrating a process for deploying a federated application.
  • the process begins with the deployment tool starting, in step 405 , deployment of the applications 110 115 , 120 .
  • a certain number of preselected applications are deployed automatically.
  • an administrator using a control console can manually select the applications that he wishes to deploy.
  • the deployment tool selects an application for deployment and reads, in step 410 , the deployment descriptor for the application.
  • the deployment tool determines, in step 415 , whether the deployment descriptor lists any references to library modules. For those deployment descriptors that are constructed as application.xml files, this comprises checking the beginning of the application.xml file for library module references. If there are no library modules listed, the process moves to step 435 , which is described below.
  • the server then, in step 420 , validates the references stored in the deployment descriptor and verifies that they are registered with the server.
  • the server When the server is first booted (previous to step 405 ), it performs a registration process where it reads an entry in the config.xml file indicating the location and implementation version of any library modules.
  • the server reads the library module name listed in the deployment descriptor for the application and loads the library module located at the location associated with the module name in the server's config.xml file. The server also checks the implementation version of the module registered with the server to make sure that it matches the implementation version listed in the referencing deployment descriptor.
  • the server determines, in step 425 , that the library module has not been validated and halts, in step 428 , deployment of the application.
  • the server then sequentially extracts and deploys, in step 430 , each library module from the JAR file in which it is stored in the order that the library modules appear in the application.xml file. If any JAR files store multiple library modules, all of the library modules in the JAR file are deployed.
  • the server then deploys, in step 435 , the modules listed in the application's application.xml file and then completes, in step 440 , deployment of the application.
  • the present invention may be conveniently implemented using a conventional general purpose or a specialized digital computer or microprocessor programmed according to the teachings of the present disclosure, as will be apparent to those skilled in the computer art.
  • the present invention includes a computer program product which is a storage medium (media) having instructions stored thereon/in which can be used to program a computer to perform any of the processes of the present invention.
  • the storage medium can include, but is not limited to, any type of disk including floppy disks, optical discs, DVD, CD-ROMs, microdrive, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, DRAMs, VRAMs, flash memory devices, magnetic or optical cards, nanosystems (including molecular memory ICs), or any type of media or device suitable for storing instructions and/or data.
  • the present invention includes software for controlling both the hardware of the general purpose/specialized computer or microprocessor, and for enabling the computer or microprocessor to interact with a human user or other mechanism utilizing the results of the present invention.
  • software may include, but is not limited to, device drivers, operating systems, and user applications.

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

Federated applications are configured to use both modules created for the applications as well as library modules which perform commonly used functions. The library modules are stored separately for deployment when utilized by applications. A deployment descriptor is configured with descriptions of internal modules and references to library modules. A deployment tool reads the deployment descriptor, extracts the library modules according to the information stored in the deployment descriptor, and loads the modules specific to the application.

Description

PRIORITY CLAIM
The present application is a nonprovisional of U.S. Patent Application No. 60/568,211, filed on May 5, 2004, entitled FEDERATED APPLICATIONS, Inventors Rob Woolen, et al., the contents of which are incorporated by reference in their entirety.
RELATED APPLICATIONS
The present application is related to U.S. Patent Application No. 60/571,106, filed May 15, 2004, entitled SYSTEM AND METHOD FOR WEB APPLICATION EXTENSIBILITY, Inventors Mark Griffith et al., the contents of which are incorporated by reference in their entirety.
COPYRIGHT NOTICE
A portion of the disclosure of this patent document contains material which is subject to copyright protection. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, as it appears in the Patent and Trademark Office patent file or records, but otherwise reserves all copyright rights whatsoever.
FIELD OF THE INVENTION
The present invention relates to systems, methods, and computer readable media for structuring and deploying applications.
BACKGROUND OF THE INVENTION
Since its inception in 1995, the Java™ programming language has become increasingly popular. (Java is a trademark of Sun Microsystems, Inc.) Java, which is an interpreted language, enabled the creation of applications which could be run on a wide variety of platforms. This ability to function across a variety of different client platforms and Java's relatively easy implementation of network applications has resulted in its use in endeavors as basic as personal web pages to endeavors as complex as large business-to-business enterprise systems.
As Java has become more commonplace, a wide variety of tools and development platforms have been created to assist developers in the creation and implementation of Java applications. These development platforms have usually been built around an application server program that provides a common interface for accessing internal data and resources. These development platforms have also included commonly-used modules and components that can be included in newly-created applications, thus sparing the developers the burden of creating these components and having to recreate the efforts of others. One such application platform is WebLogic Platform, by BEA systems of San Jose Calif.
While these platforms enable users to utilize previously developed modules and components, there are some inefficiencies with the current mechanisms by which these modules are included in new applications. Current configurations require that the modules be copied into every application which utilizes the modules or add the modules to a system classpath storing modules that are available to all applications. Thus, if these commonly-used modules are modified, they must be separately modified in every application which utilizes them, greatly complicating the process of maintaining web servers and complicating deployment.
FIG. 1 illustrates an embodiment of an application deployment environment as practiced in the prior art. A server storage 5 stores multiple applications 10, 15, 20 previous to deployment. The applications are preferably stored as archives for deployment by a deployment tool 25. In one embodiment, the archive is stored in the form of an Enterprise ARchive (EAR) file. Each application includes a set of application modules 30. The application modules 30 are application-specific modules that were generated by a creator of the application 40 for use in the specific application. The application 10 also includes a set of common modules 35. The common modules 35 are modules that have been created by a third party for use in other applications. The common modules 35 can include libraries, administrative web applications, Enterprise Java Beans (EJB's) and any other modules that might be made available for use in multiple applications. Applications 15 and 20 also include common modules. In the present prior art embodiment, any applications that utilize a common module must include a copy of the common module, thus requiring many multiple copies of the common module in the storage.
The application 10 also includes a deployment descriptor 38 which stores information necessary for the deployment tool 25 to successfully deploy the application. In one embodiment, the deployment descriptor is an application.xml file. As used herein, files ending with an “xml” filename extension are files in the eXtensible Markup Language (XML) format. The deployment descriptor preferably includes elements indicating each module used in the application, its type, and its path in the EAR file storing the application. If a common module 35 is used in each of the applications 10, 15, 20 it will appear in each of the EAR files, with its existence and location in the EAR referenced in the deployment descriptor 38 for the applications. The deployment descriptor 38 typically lists the location of the file in the EAR relative to a root of the EAR.
The deployment tool 25 is responsible for deploying the applications 10, 15, 20 from the server storage to generate the deployed applications 40, 45, 50. In one embodiment, the deployment tool runs when the server is started and automatically deploys a group of preselected applications. In an alternate embodiment, the deployment tool allows a system administrator to manually select which applications are deployed. The deployment tool checks the deployment descriptors 38 of each of the applications 10, 15, 20 to locate the modules 30, 35 used by the application within that application's EAR file and to deploy the application. The deployed applications are then available for use by remote clients or any party interacting with the web server.
The implementation discussed in FIG. 1 is inefficient as any modifications made to the common modules must be made in every application. Additionally, as new versions of the common modules are released it becomes difficult to track which versions are in use in each application. What is needed is a more efficient system of implementing commonly used modules.
BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 illustrates an embodiment of an application deployment environment as practiced in the prior art.
FIG. 2 illustrates an application environment in accordance with one embodiment of the present invention.
FIG. 3 illustrates the structure of a library module.
FIG. 4 is a flow chart illustrating a process for deploying a federated application.
DETAILED DESCRIPTION
In accordance with one embodiment of the present invention federated applications are configured to use both modules created for the applications as well as library modules which perform commonly used functions. The library modules are stored separately for deployment when utilized by applications. A deployment descriptor is configured with descriptions of internal modules and references to library modules. A deployment tool reads the deployment descriptor, extracts the library modules according to the information stored in the deployment descriptor, and loads the modules specific to the application.
FIG. 2 illustrates an application environment in accordance with one embodiment of the present invention. The server storage 105 stores applications 110, 115, 120. These applications are stored in archives such as EAR files.
The server storage 105 also includes library modules 128. The library modules are commonly-used modules that are stored for deployment with created applications. The library modules are preferably stored in Java ARchive (JAR) files. In one embodiment, each JAR file stores a single library module. In an alternate embodiment, multiple library modules are stored in a single JAR file. The library modules typically include a manifest identifying the library module, class files, a deployment descriptor, and additional resources. The structure of the library modules is described in greater detail with respect to FIG. 3.
The library modules are typically registered with the server by including a reference to the library in the server's configuration parameters. In one embodiment, the configuration parameters include a config.XML file. When starting, the server detects the reference to the library and generates a configuration bean associated with the library. The reference to the library preferably includes a unique name for the library, a type for the library, a version of the library, and a location of the JAR file storing the library. One embodiment of a config.XML entry for a library file is disclosed below:
<LibraryModule
  LibraryName=“BA1”
  LibraryType=“rar”
  ImplementationVersion=“8.1”
  ImplementationURL=“file:///usr/local/ba1.rar”
/>
The applications 110, 115, 120 include application modules 130 which are modules that have been created for the particular application and are either not commonly utilized or not commonly utilized enough to justify their inclusion with the library modules 125. The applications also include deployment descriptors 155. In one embodiment, the deployment descriptor is an application.xml file. The deployment descriptor preferably includes information necessary for representing the application in different GUI tools, elements indicating each module used in the application, its type, and its path in the EAR file storing the application. Additionally, the application deployment descriptor includes references to the library modules 128 utilized by the application. The reference to the library module includes the library name, which uniquely identifies the library and is compared to the library name included in either the library's manifest or the config.XML file. It also includes the implementation version, which is the minimum implementation version needed by the application. The deployment tool 125 will compare this value with the implementation version stored in the config.XML file to verify that the two match. Finally, the entry includes a module-url which indicates a location on the server 105 where the library module can be located. Below is one example of an application.xml file which references library modules
<application>
 <display-name>ExampleApplication</display-name>
 <description>Example</description>
<library-module>
 <library-name>WorkFlowEJB</library-name>
 <implementation-version>8.1</implementation-version>
 <module-url>workflow.jar</module-url>
</library-module>
 <module>
  <ejb>ejb1.jar</ejb>
 </module>
 <module>
  <ejb>ejb2.jar</ejb>
 </module>
  <module>
  <web>
   <web-uri>web.war</web-uri>
   <context-root>web</context-root>
  </web>
 </module>
</application>
The deployment tool 125 is responsible for deploying the applications 110, 115, 120 from the server storage to generate the deployed applications 140, 145, 150. In one embodiment, the deployment tool runs when the server is started and automatically deploys a group of preselected applications. In an alternate embodiment, the deployment tool allows a system administrator to manually select which applications are deployed.
The deployment tool, when deploying an application 110, checks the deployment descriptor 155. The deployment tool first checks the library module reference to determine whether there are any library modules referenced by the application 110. If so, the deployment tool uses the identifier for the library module to locate the library module on the server storage 105. The deployment tool 125 then extracts any referenced library modules from the JAR files in which the library file is archived in the order in which the library modules are listed in the deployment descriptor. Alternately the deployment tool 125 can directly deploy the library module from the location where it is stored. If the JAR file contains multiple library modules, all of the library modules in the JAR file are deployed. The deployment tool 125 then deploys any application modules 136 within the application 110.
FIG. 3 illustrates the structure of a library module. The library module includes a manifest 310, class files 315, a deployment descriptor 320, and additional resources 325. The manifest 310 stores information for uniquely identifying the module to the web server and includes the library name 330, implementation title 335, and implementation version 340. In some embodiments, the manifest 310 also includes a specification version indicating a minimum extension specification version that is needed for extensions to the library module. In these embodiments, the key that is used for identifying a library module consists of name/specification version/implementation version.
The library name 330 is the unique identifier used to identify the module. The library name is used by the deployment tool 125 to identify the module when referenced by the application.xml file in the application 120. The implementation title 335 is a string that uniquely identifies the title of the library implementation. The implementation version 340 indicates a version of the implementation of the library module that is stored on the server storage. The web server preferably compares the implementation version 340 and library name 330 of the stored library module to the name and implementation version in the application.xml file of the associated application. In one embodiment, if the library name and implementation version do not match, the deployment tool 125 will not extract the library module.
The library module also includes class files 315. The class files are classes which contain the functionality of the module. The library module also includes additional resources 325. The additional resources include static content files for use by the library module 315. The library module additionally includes a deployment descriptor 320. The deployment descriptor preferably includes information necessary for representing the library module in different GUI tools, elements indicating each module used in the library module and its type and path in the JAR file storing the library module. Alternately, the library module can include a standard web-application deployment descriptor.
FIG. 4 is a flow chart illustrating a process for deploying a federated application. The process begins with the deployment tool starting, in step 405, deployment of the applications 110 115, 120. In one embodiment, a certain number of preselected applications are deployed automatically. In an alternate embodiment, an administrator using a control console can manually select the applications that he wishes to deploy. The deployment tool selects an application for deployment and reads, in step 410, the deployment descriptor for the application. The deployment tool determines, in step 415, whether the deployment descriptor lists any references to library modules. For those deployment descriptors that are constructed as application.xml files, this comprises checking the beginning of the application.xml file for library module references. If there are no library modules listed, the process moves to step 435, which is described below.
If there are library modules referenced in the deployment descriptor, the server then, in step 420, validates the references stored in the deployment descriptor and verifies that they are registered with the server. When the server is first booted (previous to step 405), it performs a registration process where it reads an entry in the config.xml file indicating the location and implementation version of any library modules. Returning to step 420, the server reads the library module name listed in the deployment descriptor for the application and loads the library module located at the location associated with the module name in the server's config.xml file. The server also checks the implementation version of the module registered with the server to make sure that it matches the implementation version listed in the referencing deployment descriptor. If no module is stored at the location listed in the config.xml file, if the module located at the location described in the config.xml file does not have the same name in its manifest as the module listed in the application.xml file, or if the implementation version listed in the config.xml file or module manifest does not match the implementation version stored in the config.xml file, the server determines, in step 425, that the library module has not been validated and halts, in step 428, deployment of the application.
If the references are validated, the server then sequentially extracts and deploys, in step 430, each library module from the JAR file in which it is stored in the order that the library modules appear in the application.xml file. If any JAR files store multiple library modules, all of the library modules in the JAR file are deployed.
The server then deploys, in step 435, the modules listed in the application's application.xml file and then completes, in step 440, deployment of the application.
Other features, aspects and objects of the invention can be obtained from a review of the figures and the claims. It is to be understood that other embodiments of the invention can be developed and fall within the spirit and scope of the invention and claims.
The foregoing description of preferred embodiments of the present invention has been provided for the purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise forms disclosed. Obviously, many modifications and variations will be apparent to the practitioner skilled in the art. The embodiments were chosen and described in order to best explain the principles of the invention and its practical application, thereby enabling others skilled in the art to understand the invention for various embodiments and with various modifications that are suited to the particular use contemplated. It is intended that the scope of the invention be defined by the following claims and their equivalence.
In addition to an embodiment consisting of specifically designed integrated circuits or other electronics, the present invention may be conveniently implemented using a conventional general purpose or a specialized digital computer or microprocessor programmed according to the teachings of the present disclosure, as will be apparent to those skilled in the computer art.
Appropriate software coding can readily be prepared by skilled programmers based on the teachings of the present disclosure, as will be apparent to those skilled in the software art. The invention may also be implemented by the preparation of application specific integrated circuits or by interconnecting an appropriate network of conventional component circuits, as will be readily apparent to those skilled in the art.
The present invention includes a computer program product which is a storage medium (media) having instructions stored thereon/in which can be used to program a computer to perform any of the processes of the present invention. The storage medium can include, but is not limited to, any type of disk including floppy disks, optical discs, DVD, CD-ROMs, microdrive, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, DRAMs, VRAMs, flash memory devices, magnetic or optical cards, nanosystems (including molecular memory ICs), or any type of media or device suitable for storing instructions and/or data.
Stored on any one of the computer readable medium (media), the present invention includes software for controlling both the hardware of the general purpose/specialized computer or microprocessor, and for enabling the computer or microprocessor to interact with a human user or other mechanism utilizing the results of the present invention. Such software may include, but is not limited to, device drivers, operating systems, and user applications.
Included in the programming (software) of the general/specialized computer or microprocessor are software modules for implementing the teachings of the present invention.

Claims (15)

1. A method for deploying a plurality of applications, the method comprising:
providing at least one library module in a server storage, wherein the at least one library module performs commonly used functions shared by the plurality of applications and the at least one library module includes a manifest that stores information uniquely identifying the library module to a web server, and wherein the library module can be implemented in different implementation versions, and wherein the manifest includes an implementation version that indicates a version of an implementation of the library module stored in the server storage;
identifying the at least one library module using a key that includes a name of the at least one library module, an implementation version, and a specification version, wherein the specification version indicates a minimum extension specification version that is needed for extensions to the at least one library module;
providing a plurality of deployment descriptors, wherein each said deployment descriptor is associated with one of the plurality of applications stored in the server storage, wherein each said deployment descriptor includes a reference to the at least one library module, wherein the reference includes a minimum implementation version of the at least one library module required by a said application that is associated with the said deployment descriptor;
comparing the minimum implementation version in a first deployment descriptor of the plurality of deployment descriptors with the implementation version in the at least one library module, wherein the first deployment descriptor is associated with a first application of the plurality of applications in the server storage;
deploying the first application to a first web server, if the implementation version in the at least one library module satisfies the minimum implementation version in the first deployment descriptor, and generating a first deployed application based on the at least one library module and the first application, such that the first application has access to the commonly used functions provided by the at least one library module;
comparing the minimum implementation version in a second deployment descriptor of the plurality of deployment descriptors with the implementation version in the at least one library module, wherein the second deployment descriptor is associated with a second application of the plurality of applications in the server storage; and
deploying the second application to a second web server, if the implementation version in the at least one library module satisfies the minimum implementation version in the second deployment descriptor, and generating a second deployed application based on the at least one library module and the second application, such that the second application has access to the commonly used functions provided by the at least one library module.
2. The method of claim 1, wherein each said deployment descriptor is in a markup language.
3. The method of claim 1, wherein the at least one library module is stored in an archive file.
4. The method of claim 1, wherein the at least one library module is stored externally to the plurality of applications.
5. The method of claim 1, further comprising:
halting a deployment of the first application when the implementation version in the at least one library module does not satisfy the minimum implementation version required by the first application.
6. The method of claim 1, further comprising:
halting a deployment of the second application when the implementation version in the at least one library module does not satisfy the minimum implementation version required by the second application.
7. The method of claim 1, further comprising:
allowing the minimum implementation version in the first said deployment descriptor to be different from the minimum implementation version in the second deployment descriptor.
8. A computer program product, stored on a computer readable storage medium, and including computer executable instructions for deploying a plurality of applications, the instructions comprising instructions for:
providing at least one library module in a server storage, wherein the at least one library module performs commonly used functions shared by the plurality of applications and the at least one library module includes a manifest that stores information uniquely identifying the library module to a web server, and wherein the library module can be implemented in different implementation versions, and wherein the manifest includes an implementation version that indicates a version of a implementation of the library module stored in the server storage;
identifying the at least one library module using a key that includes a name of the at least one library module, an implementation version, and a specification version, wherein the specification version indicates a minimum extension specification version that is needed for extensions to the at least one library module;
providing a plurality of deployment descriptors, wherein each said deployment descriptor is associated with one of the plurality of applications stored in the server storage, wherein each said deployment descriptor includes a reference to the at least one library module, wherein the reference includes a minimum implementation version of the at least one library module required by a said application that is associated with the said deployment descriptor;
comparing the minimum implementation version in a first deployment descriptor of the plurality of deployment descriptors with the implementation version in the at least one library module, wherein the first deployment descriptor is associated with a first application of the plurality of applications in the server storage;
deploying the first application to a first web server, if the implementation version in the at least one library module satisfies the minimum implementation version in the first deployment descriptor, and generating a first deployed application based on the at least one library module and the first application, such that the first application has access to the commonly used functions provided by the at least one library module;
comparing the minimum implementation version in a second deployment descriptor of the plurality of deployment descriptors with the implementation version in the at least one library module, wherein the second deployment descriptor is associated with a second application of the plurality of applications in the server storage; and
deploying the second application to a second web server, if the implementation version in the at least one library module satisfies the minimum implementation version in the second deployment descriptor, and generating a second deployed application based on the at least one library module and the second application, such that the second application has access to the commonly used functions provided by the at least one library module.
9. The computer program product of claim 8, wherein the deployment descriptor is in a markup language.
10. The computer program product of claim 8, wherein the at least one library module is stored in an archive file.
11. The computer program product of claim 8, wherein the at least one library module is stored externally to the plurality of applications.
12. A system for deploying a plurality of applications, the system comprising:
at least one library module in a server storage, wherein the at least one library module performs commonly used functions shared by the plurality of applications and the at least one library module includes a manifest that stores information uniquely identifying the library module to a web server, and wherein the library module can be implemented in different implementation versions, and wherein the manifest includes an implementation version that indicates a version of a implementation of the library module stored in the server storage;
a plurality of deployment descriptors, wherein each said deployment descriptor is associated with one of the plurality of applications stored in the server storage, wherein each said deployment descriptor includes a reference to the at least one library module, wherein the reference includes a minimum implementation version of the at least one library module required by a said application that is associated with the said deployment descriptor; and
a deployment tool, running on one or more processors, configured to:
compare the minimum implementation version in a first deployment descriptor of the plurality of deployment descriptors with the implementation version in the at least one library module, wherein the first deployment descriptor is associated with a first application of the plurality of applications in the server storage;
deploy the first application to a first web server, if the implementation version in the at least one library module satisfies the minimum implementation version in the first deployment descriptor, and generate a first deployed application based on the at least one library module and the first application, such that the first application has access to the commonly used functions provided by the at least one library module;
identify the at least one library module using a key that includes a name of the at least one library module, an implementation version, and a specification version, wherein the specification version indicates a minimum extension specification version that is needed for extensions to the at least one library module;
compare the minimum implementation version in a second deployment descriptor of the plurality of deployment descriptors with the implementation version in the at least one library module, wherein the second deployment descriptor is associated with a second application of the plurality of applications in the server storage; and
deploy the second application to a second web server, if the implementation version in the at least one library module satisfies the minimum implementation version in the second deployment descriptor, and generate a second deployed application based on the at least one library module and the second application, such that the second application has access to the commonly used functions provided by the at least one library module.
13. The system of claim 12, wherein the deployment descriptor is in a markup language.
14. The system of claim 12, wherein the at least one library module is stored in an archive file.
15. The system of claim 12, wherein the at least one library module is stored externally to the plurality of applications.
US10/969,089 2004-05-05 2004-10-20 System and method for deploying applications with library modules Active 2026-08-26 US7797697B2 (en)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US10/969,089 US7797697B2 (en) 2004-05-05 2004-10-20 System and method for deploying applications with library modules
PCT/US2005/014430 WO2005114392A1 (en) 2004-05-05 2005-04-28 System and method for application libraries

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US56821104P 2004-05-05 2004-05-05
US10/969,089 US7797697B2 (en) 2004-05-05 2004-10-20 System and method for deploying applications with library modules

Publications (2)

Publication Number Publication Date
US20050251810A1 US20050251810A1 (en) 2005-11-10
US7797697B2 true US7797697B2 (en) 2010-09-14

Family

ID=35240807

Family Applications (1)

Application Number Title Priority Date Filing Date
US10/969,089 Active 2026-08-26 US7797697B2 (en) 2004-05-05 2004-10-20 System and method for deploying applications with library modules

Country Status (2)

Country Link
US (1) US7797697B2 (en)
WO (1) WO2005114392A1 (en)

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050108702A1 (en) * 2003-11-14 2005-05-19 International Business Machines Corporation On-demand software module deployment
US20060123040A1 (en) * 2004-12-03 2006-06-08 International Business Machines Corporation Algorithm for automated enterprise deployments
US20090064135A1 (en) * 2007-08-31 2009-03-05 Thomson Corporation Bootstrapper and software download manager
US20110265077A1 (en) * 2010-04-26 2011-10-27 Vmware, Inc. Rapid updating of cloud applications
CN104572189A (en) * 2014-12-25 2015-04-29 深圳联友科技有限公司 Method for rapidly deploying multiple application programs
US9037912B1 (en) * 2012-08-23 2015-05-19 Amazon Technologies, Inc. Validation of asset data for component assemblies
US10802810B2 (en) * 2016-12-27 2020-10-13 Sap Se Consuming persistent library bundles
US11366746B2 (en) 2020-06-05 2022-06-21 Bank Of America Corporation System for application code development build, scan, and test environment

Families Citing this family (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060277537A1 (en) * 2005-06-01 2006-12-07 International Business Machines Corporation Deployment of containers and container extensions in a modular code runtime platform through a runtime platform extension point
US8869140B2 (en) * 2008-05-09 2014-10-21 Sap Se Deploying software modules in computer system
US20150026658A1 (en) * 2013-07-18 2015-01-22 Appsense Limited Systems, Methods and Media for Dynamic Creation and Update of Activation Context for Component Object Model
US20170286082A1 (en) * 2016-03-31 2017-10-05 Microsoft Technology Licensing, Llc De-duplication during flashing of mobile devices
US20180032322A1 (en) * 2016-07-29 2018-02-01 Hewlett Packard Enterprise Development Lp Automated devops application deployment

Citations (33)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5835777A (en) 1996-03-20 1998-11-10 Hewlett-Packard Company Method of automatically generating a software installation package
US5911071A (en) 1996-09-13 1999-06-08 Sun Microsystems, Inc. Persistent programming system and method for deploying self-containing executable applications
US6128647A (en) 1996-04-05 2000-10-03 Haury; Harry R. Self configuring peer to peer inter process messaging system
US20020049744A1 (en) 1999-01-29 2002-04-25 Dimitris Nakos Techniques for managing a database system including one or more database servers
US20020078132A1 (en) 2000-12-20 2002-06-20 Cullen William M. Message handling
US6529992B1 (en) 1999-07-26 2003-03-04 Iomega Corporation Self-contained application disk for automatically launching application software or starting devices and peripherals
US20030093717A1 (en) 2001-09-26 2003-05-15 International Business Machines Corporation Test programs for enterprise web applications
US20030101435A1 (en) 2001-11-29 2003-05-29 Hitachi, Inc. Method for associating names and device for the same in enterprise applications
US20030158919A1 (en) 2002-02-20 2003-08-21 Sun Microsystems, Inc., A Delaware Corporation Method for deploying version control system server software having remote access capability
US20030204784A1 (en) 2002-04-29 2003-10-30 Jorapur Gopal P. System and method for automatic test case generation
US20030212990A1 (en) * 2002-05-08 2003-11-13 Thomas Brodkorb Software delivery manager
US20040068731A1 (en) 2002-10-07 2004-04-08 International Business Machines Corporation Remote Web service cloning and instantiation
US20040068537A1 (en) 2002-10-02 2004-04-08 International Business Machines Corporation Enterprise javabeans container
US20040068553A1 (en) * 2002-10-07 2004-04-08 International Business Machines Corporation Dynamically selecting a Web service container for hosting remotely instantiated Web services
US6721777B1 (en) 2000-05-24 2004-04-13 Sun Microsystems, Inc. Modular and portable deployment of a resource adapter in an application server
US20040088681A1 (en) 2002-10-31 2004-05-06 Berg Daniel C. Method and system for dynamically mapping archive files in an enterprise application
US6751797B1 (en) 1999-10-26 2004-06-15 Bull S.A. System and method for managing the persistence of EJB components in a directory accessed via LDAP
US6766324B2 (en) 2001-07-20 2004-07-20 International Business Machines Corporation System and method for defining, configuring and using dynamic, persistent Java classes
US20040172407A1 (en) 2003-02-28 2004-09-02 Arpirez Vega Julio Cesar Method and system of processing an encapsulated file at a management computer
US20040177352A1 (en) * 2003-03-03 2004-09-09 Narayanaswamy Sreedhara Srinivasulu Universal deployment tool
US20040255294A1 (en) 2003-02-12 2004-12-16 Bea Systems, Inc. System and method for hierarchical loading of EJB implementations
US20050005200A1 (en) 2003-03-12 2005-01-06 Vladimir Matena Method and apparatus for executing applications on a distributed computer system
US20050033767A1 (en) * 2003-08-04 2005-02-10 Kamentz Joel D. Computer-implemented system and method for resource caching and execution
US6892382B1 (en) * 1999-05-06 2005-05-10 Sun Microsystems, Inc. Method and apparatus for implementing deployment descriptors in an enterprise environment
US20050137856A1 (en) * 2003-12-22 2005-06-23 Cencini Andrew B. Full-text index module consistency checking
US20050138076A1 (en) 2003-12-19 2005-06-23 Seo Beom S. Description and implementation method of threadbean in EJB container
US6970924B1 (en) 1999-02-23 2005-11-29 Visual Networks, Inc. Methods and apparatus for monitoring end-user experience in a distributed network
US6976061B1 (en) 2000-05-24 2005-12-13 Sun Microsystems, Inc. Resource adapter and XML descriptor for use in a client server environment utilizing an enterprise information system
US7086065B1 (en) 2000-07-20 2006-08-01 Telesector Resources Group, Inc. Functional enterprise bean
US7107592B2 (en) 2002-07-25 2006-09-12 Sun Microsystems, Inc. Method, system, and program for making objects available for access to a client over a network
US7127713B2 (en) 2002-01-11 2006-10-24 Akamai Technologies, Inc. Java application framework for use in a content delivery network (CDN)
US7185071B2 (en) 2002-12-24 2007-02-27 International Business Machines Corporation Self-healing version and configuration model for an application server
US7228541B2 (en) 2003-01-17 2007-06-05 National Instruments Corporation Creation of application system installer

Patent Citations (36)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5835777A (en) 1996-03-20 1998-11-10 Hewlett-Packard Company Method of automatically generating a software installation package
US6128647A (en) 1996-04-05 2000-10-03 Haury; Harry R. Self configuring peer to peer inter process messaging system
US5911071A (en) 1996-09-13 1999-06-08 Sun Microsystems, Inc. Persistent programming system and method for deploying self-containing executable applications
US20020049744A1 (en) 1999-01-29 2002-04-25 Dimitris Nakos Techniques for managing a database system including one or more database servers
US6970924B1 (en) 1999-02-23 2005-11-29 Visual Networks, Inc. Methods and apparatus for monitoring end-user experience in a distributed network
US6892382B1 (en) * 1999-05-06 2005-05-10 Sun Microsystems, Inc. Method and apparatus for implementing deployment descriptors in an enterprise environment
US6529992B1 (en) 1999-07-26 2003-03-04 Iomega Corporation Self-contained application disk for automatically launching application software or starting devices and peripherals
US6751797B1 (en) 1999-10-26 2004-06-15 Bull S.A. System and method for managing the persistence of EJB components in a directory accessed via LDAP
US6721777B1 (en) 2000-05-24 2004-04-13 Sun Microsystems, Inc. Modular and portable deployment of a resource adapter in an application server
US6976061B1 (en) 2000-05-24 2005-12-13 Sun Microsystems, Inc. Resource adapter and XML descriptor for use in a client server environment utilizing an enterprise information system
US7086065B1 (en) 2000-07-20 2006-08-01 Telesector Resources Group, Inc. Functional enterprise bean
US20020078132A1 (en) 2000-12-20 2002-06-20 Cullen William M. Message handling
US6766324B2 (en) 2001-07-20 2004-07-20 International Business Machines Corporation System and method for defining, configuring and using dynamic, persistent Java classes
US20030093717A1 (en) 2001-09-26 2003-05-15 International Business Machines Corporation Test programs for enterprise web applications
US20030101435A1 (en) 2001-11-29 2003-05-29 Hitachi, Inc. Method for associating names and device for the same in enterprise applications
US7127713B2 (en) 2002-01-11 2006-10-24 Akamai Technologies, Inc. Java application framework for use in a content delivery network (CDN)
US20030158919A1 (en) 2002-02-20 2003-08-21 Sun Microsystems, Inc., A Delaware Corporation Method for deploying version control system server software having remote access capability
US20030204784A1 (en) 2002-04-29 2003-10-30 Jorapur Gopal P. System and method for automatic test case generation
US20030212990A1 (en) * 2002-05-08 2003-11-13 Thomas Brodkorb Software delivery manager
US7107592B2 (en) 2002-07-25 2006-09-12 Sun Microsystems, Inc. Method, system, and program for making objects available for access to a client over a network
US6829575B2 (en) 2002-10-02 2004-12-07 International Business Machines Corporation Enterprise javabeans container
US20040068537A1 (en) 2002-10-02 2004-04-08 International Business Machines Corporation Enterprise javabeans container
US20040068731A1 (en) 2002-10-07 2004-04-08 International Business Machines Corporation Remote Web service cloning and instantiation
US20040068553A1 (en) * 2002-10-07 2004-04-08 International Business Machines Corporation Dynamically selecting a Web service container for hosting remotely instantiated Web services
US20040088681A1 (en) 2002-10-31 2004-05-06 Berg Daniel C. Method and system for dynamically mapping archive files in an enterprise application
US7185071B2 (en) 2002-12-24 2007-02-27 International Business Machines Corporation Self-healing version and configuration model for an application server
US7228541B2 (en) 2003-01-17 2007-06-05 National Instruments Corporation Creation of application system installer
US20040255294A1 (en) 2003-02-12 2004-12-16 Bea Systems, Inc. System and method for hierarchical loading of EJB implementations
US20040172407A1 (en) 2003-02-28 2004-09-02 Arpirez Vega Julio Cesar Method and system of processing an encapsulated file at a management computer
US7069553B2 (en) * 2003-03-03 2006-06-27 Computer Associates Think, Inc. Universal deployment tool
US20040177352A1 (en) * 2003-03-03 2004-09-09 Narayanaswamy Sreedhara Srinivasulu Universal deployment tool
US20050005200A1 (en) 2003-03-12 2005-01-06 Vladimir Matena Method and apparatus for executing applications on a distributed computer system
US7302609B2 (en) 2003-03-12 2007-11-27 Vladimir Matena Method and apparatus for executing applications on a distributed computer system
US20050033767A1 (en) * 2003-08-04 2005-02-10 Kamentz Joel D. Computer-implemented system and method for resource caching and execution
US20050138076A1 (en) 2003-12-19 2005-06-23 Seo Beom S. Description and implementation method of threadbean in EJB container
US20050137856A1 (en) * 2003-12-22 2005-06-23 Cencini Andrew B. Full-text index module consistency checking

Non-Patent Citations (9)

* Cited by examiner, † Cited by third party
Title
"Microsoft Computer Dictionary," Fifth Edition, Microsoft Press, 2002; p. 115, 176, 542. *
Chappell, et al., "Java Message Service", O'Reilly, Dec. 2000, © 2006, Safari Books Online, 27 pages; http://proquest.safaribooksonline.com/059600685.
Guo, et al., "Developing a Distributed Scalable Java Component Server", Future Generation Computer Systems, May 24, 2001, vol. 17, Issue 8, pp. 1051-1057, © 2001 Elsevier Science B.V.
International Search Report for PCT/US05/14430, 8 pages, Mailed Jul. 27, 2005, PCT.
Mencl, "Enhancing EJB Component Model", Academy of Sciences of the Czech Republic, 2001, 11 pages.
Popovici, "Spontaneous Container Services ", ECOOP 2003, LNCS 2743, pp. 29-54.
Taylor, A., J2EE and Beyond: Design, Develop, and Deploy World-Class Java(TM) Software, Prentice-Hall, Dec. 23, 2002, 40 pages.
Taylor, A., J2EE and Beyond: Design, Develop, and Deploy World-Class Java™ Software, Prentice-Hall, Dec. 23, 2002, 40 pages.
Vecellio, et al., "Container Services for High Confidence Software", Jun. 10-14, 2002, Seventh International Workshop on Component-Oriented Programming, 13 pages.

Cited By (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050108702A1 (en) * 2003-11-14 2005-05-19 International Business Machines Corporation On-demand software module deployment
US8225307B2 (en) * 2003-11-14 2012-07-17 International Business Machines Corporation On-demand software module deployment
US9043781B2 (en) * 2004-12-03 2015-05-26 International Business Machines Corporation Algorithm for automated enterprise deployments
US20060123040A1 (en) * 2004-12-03 2006-06-08 International Business Machines Corporation Algorithm for automated enterprise deployments
US20090064135A1 (en) * 2007-08-31 2009-03-05 Thomson Corporation Bootstrapper and software download manager
US8938735B2 (en) * 2007-08-31 2015-01-20 Thomson Reuters Global Resources Bootstrapper and software download manager
US9448790B2 (en) * 2010-04-26 2016-09-20 Pivotal Software, Inc. Rapid updating of cloud applications
US20110265077A1 (en) * 2010-04-26 2011-10-27 Vmware, Inc. Rapid updating of cloud applications
US9037912B1 (en) * 2012-08-23 2015-05-19 Amazon Technologies, Inc. Validation of asset data for component assemblies
US10055319B2 (en) 2012-08-23 2018-08-21 Amazon Technologies, Inc. Validation of asset data for component assemblies
CN104572189A (en) * 2014-12-25 2015-04-29 深圳联友科技有限公司 Method for rapidly deploying multiple application programs
US10802810B2 (en) * 2016-12-27 2020-10-13 Sap Se Consuming persistent library bundles
US11366746B2 (en) 2020-06-05 2022-06-21 Bank Of America Corporation System for application code development build, scan, and test environment

Also Published As

Publication number Publication date
WO2005114392A1 (en) 2005-12-01
US20050251810A1 (en) 2005-11-10

Similar Documents

Publication Publication Date Title
US8020171B2 (en) System and method for creating and deploying applications with new container types
US7814484B2 (en) System and method for web application extensibility
US7797697B2 (en) System and method for deploying applications with library modules
US6381742B2 (en) Software package management
US7620956B2 (en) Portable memory storage devices with application layers
US6237144B1 (en) Use of relational databases for software installation
Bailey Maximum rpm
US8181166B2 (en) System and method for determining when an EJB compiler needs to be executed
JP3610284B2 (en) Apparatus and method for synchronizing software between computers
US6418554B1 (en) Software implementation installer mechanism
US6892382B1 (en) Method and apparatus for implementing deployment descriptors in an enterprise environment
US20050169073A1 (en) Portable memory storage devices containing public context application layers
US10055415B2 (en) Methods and systems for deploying hardware files to a computer
US20060031831A1 (en) Generic packaging tool for packaging application and component therefor to be installed on computing device
US10248703B2 (en) System and method for cluster-wide replication of embedded component configuration
US7707572B2 (en) System and method for application container architecture
US8595718B1 (en) Method and system for generating a knowledge package
US20100318967A1 (en) Supplementary deployment actions
US7818742B2 (en) Portal federated applications and portal federated web applications
US20060136906A1 (en) Software product installation facilitation
US7296255B2 (en) Systems for incremental application deployment
US20050251495A1 (en) System and method for unified file management
Cisco Cisco IP Manager 2.0(40) Release Notes
US7730112B2 (en) Scoped applications
Lassesen Oval 5. x Proposal Analysis

Legal Events

Date Code Title Description
AS Assignment

Owner name: BEA SYSTEMS, INC., CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:WOOLLEN, ROB;BILORUSETS, RUSLAN;REEL/FRAME:016340/0555;SIGNING DATES FROM 20050204 TO 20050303

Owner name: BEA SYSTEMS, INC., CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:WOOLLEN, ROB;BILORUSETS, RUSLAN;SIGNING DATES FROM 20050204 TO 20050303;REEL/FRAME:016340/0555

STCF Information on status: patent grant

Free format text: PATENTED CASE

AS Assignment

Owner name: ORACLE INTERNATIONAL CORPORATION, CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:BEA SYSTEMS, INC.;REEL/FRAME:025192/0244

Effective date: 20101008

FPAY Fee payment

Year of fee payment: 4

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552)

Year of fee payment: 8

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 12TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1553); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 12