WO1998036352A1 - Method for preserving the state of a control during the lifetime of its container - Google Patents

Method for preserving the state of a control during the lifetime of its container Download PDF

Info

Publication number
WO1998036352A1
WO1998036352A1 PCT/US1997/016459 US9716459W WO9836352A1 WO 1998036352 A1 WO1998036352 A1 WO 1998036352A1 US 9716459 W US9716459 W US 9716459W WO 9836352 A1 WO9836352 A1 WO 9836352A1
Authority
WO
WIPO (PCT)
Prior art keywords
software object
control
web page
server computer
target control
Prior art date
Application number
PCT/US1997/016459
Other languages
French (fr)
Inventor
David Neal Brim
Original Assignee
Wall Data Incorporated
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 Wall Data Incorporated filed Critical Wall Data Incorporated
Priority to AU44834/97A priority Critical patent/AU4483497A/en
Publication of WO1998036352A1 publication Critical patent/WO1998036352A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements 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/46Multiprogramming arrangements
    • G06F9/465Distributed object oriented systems
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements 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/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4488Object-oriented
    • G06F9/4493Object persistence
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • Y10S707/99932Access augmentation or optimizing
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • Y10S707/99933Query processing, i.e. searching
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99931Database or file accessing
    • Y10S707/99933Query processing, i.e. searching
    • Y10S707/99936Pattern matching access
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99941Database schema or data structure
    • Y10S707/99944Object-oriented database structure
    • Y10S707/99945Object-oriented database structure processing
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10TECHNICAL SUBJECTS COVERED BY FORMER USPC
    • Y10STECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y10S707/00Data processing: database and file management or data structures
    • Y10S707/99951File or database maintenance
    • Y10S707/99956File allocation
    • Y10S707/99957Garbage collection

Definitions

  • the present invention relates to methods of controlling communication between a client computer and a server computer, and in particular, methods of controlling the creation and destruction of software objects on a Web page.
  • Wide Web servers or simply Web servers, that are also connected to the Internet.
  • Web browser programs running on the client computers translate the downloaded digital information into a visual form called a "Web page" that is perceptible by a user.
  • Web servers to define software components that execute while a Web page is being viewed with the browser program.
  • the software components provide interactive, dynamic content in Web pages.
  • the components may establish and maintain interactive sessions between a user and remote computers, display animation, or present regularly updated information.
  • Microsoft Corporation of Redmond,
  • a Stock Ticker ActiveX control can display current stock prices that are continuously scrolled across a defined area within a Web page that is displayed by a Web browser.
  • Web browsers and Web servers provide the capability for users to navigate among numerous Web pages along with the capability of returning to a previously viewed Web page.
  • the Web browser destroys the ActiveX controls contained therein. If the user later returns to a previously viewed Web page, the Web browser must create a new set of ActiveX controls. For controls like the Stock Ticker described above, this is acceptable because a Stock Ticker control needs only to continually retrieve the latest stock prices and display them.
  • an ActiveX control preserves a specific state between invocations by the Web browser.
  • an ActiveX control that accesses a host computer preserves a connection with the host and the current host application screen to which the user has navigated.
  • the ActiveX control preserves any data the user has entered within the host application screen.
  • ActiveX controls are destroyed when a Web browser exits a Web page by navigating to a different Web page. When a control is destroyed and recreated upon leaving and returning to a Web page, the host connection must be reestablished. The user must then connect to the host, navigate to the appropriate application screen, and reenter any data that was lost.
  • the present invention is a method of controlling the existence of a software component that is associated with a Web page in order to reuse the software component when the corresponding Web page is revisited.
  • the invention provides a naming control and a class factory object, in addition to modifications to the normal processing within a control.
  • a Web browser receives one or more instructions that define a Web page. The browser translates the instructions to create a Web page, and invokes a command to create a control.
  • the class factory object receives the command and determines whether the desired control has been previously created and remains in existence. If the desired control exists, the class factory returns a reference to the control without creating a new control. If the desired control does not exist, the class factory creates the desired control, returning a reference to the newly created control.
  • the naming control passes a predetermined identifier of the desired control to the class factory.
  • the class factory uses the identifier in its determination of whether the desired control already exists.
  • the class factory maintains a list of control identifiers and determines whether the desired session control already exists by determining whether the identifier corresponding to a desired session control exists in the list.
  • the present invention also provides a method of preventing a control from being destroyed when the Web browser exits from a Web page.
  • the class factory increments a reference count corresponding to the control. Incrementing the reference count prevents the reference count from being decremented to zero, thereby preventing the destruction of the control when the Web browser exits from a Web page.
  • the present invention provides the ability to maintain the existence of a control associated with a Web page beyond the period of the visit to the Web page. When the Web browser exits the Web page and revisits the page, the control has not been destroyed.
  • the control identifier provides a mechanism to link the control with the specific instruction to create it, so that when the instruction is executed upon revisiting the Web page, a reference to the existing control can be used.
  • the invention allows a dynamic control to continue executing after exiting from the Web page, and upon a revisit to the Web page. In situations where the control maintains a communications session with a host computer, the invention allows the control to continue the communications session, without having to reestablish it.
  • the invention also has the advantage that the program code to implement it can accept instructions to either have the control continue beyond exiting from its Web page, or to destroy itself when the Web browser exits the Web page.
  • the instructions can be supplied in the form of HTML instructions in the HTML document.
  • FIGURES 1A and IB are block diagrams illustrating an exemplary network architecture in which the invention is used
  • FIGURE 1C is a flow diagram illustrating the process of creating and maintaining a connection with a host computer in accordance with the present invention.
  • FIGURE ID illustrates an exemplary Web page that contains a control in accordance with the present invention.
  • FIGURE 2 is a block diagram illustrating an architecture in which the invention is used;
  • FIGURE 3 is a flow diagram illustrating the process of creating a new control name in accordance with the present invention
  • FIGURE 4 is a flow diagram illustrating the process of handling a command to create an object in accordance with the present invention
  • FIGURE 5 is a flow diagram illustrating the process that occurs when exiting from a Web page in accordance with the present invention
  • FIGURE 6 is a flow diagram illustrating the termination of a Web browser in accordance with the present invention.
  • FIGURE 7 is a listing of exemplary HTML instructions used to create the controls of the present invention. Detailed Description of the Preferred Embodiment
  • FIGURE 1A illustrates an exemplary architecture 102 in which one or more client computers 104 communicate with one or more server computers 106 via a network 108, or other communication medium.
  • Each client computer 104 is preferably a personal computer of the type that includes an amount of volatile memory, and non- volatile memory such as a hard disk or other data storage device.
  • each client computer 104 includes a processor, a keyboard, a directional input device such as a mouse, and a monitor, such as a cathode ray tube (CRT) or a liquid crystal display (LCD).
  • Programs executed by the computer preferably use a graphical user interface that is displayed on the monitor.
  • An example of a graphical user interface is the Windows® 3.1 operating system produced by the Microsoft Corporation.
  • the server computer 106 is preferably a personal computer having the elements of a client computer 104 as described above.
  • the client computer 104 and the server computer 106 communicate with each other via the network 108, which could be a wide area network, a local area network, or a TCP IP connection.
  • the network 108 is the Internet.
  • the Internet is a commonly used wide area network that comprises many networks linked together to form a global network.
  • the Internet, wide and local area networks, and TCP/TP communication mediums are well understood by those of ordinary skill in the art and need not be discussed in further detail here, except as they relate to the present invention.
  • connection of the client and server computers to the Internet is provided in a conventional manner by an Internet service provider.
  • the server computers 106 are able to communicate with the client computers 104 utilizing a protocol known as Hypertext Transfer Protocol (HT.).
  • HTTP Hypertext Transfer Protocol
  • the server computers are commonly referred to as World Wide Web servers, or simply Web servers.
  • the network 108 is a local area network, it is referred to as an "intranet.”
  • the Web server computers 106 transmit documents over the network 108 to one or more of the client computers 104.
  • Each server executes a Web server program (not shown) that receives requests for documents from the client computer 104, and, in response, transmits documents to the client computer 104 over the network 108.
  • the document is comprised of HyperText Markup Language (HTML) statements and embedded scripts that together are referred to as an HTML document.
  • HTML HyperText Markup Language
  • HTML is a markup language, and provides document formatting information along with text.
  • a script is a series of one or more instructions from a programming language that is designed to be embedded within an HTML document.
  • Visual Basic Script created by the Microsoft Corporation, of Redmond, Washington, and JavaScript, created by Sun Microsystems, of Mountain View, California, are two commonly used scripting languages.
  • a number of Web server programs are commercially available, such as Microsoft's Internet Information Server and the Netscape Communications Server by the Netscape Corporation.
  • FIGURE IB illustrates, in further detail, the network architecture of FIGURE 1 A.
  • the client computer 104 executes a browser application 110 that communicates with the Web server programs running on the server computers 106 and displays HTML documents received from the server computer 106.
  • Web browsers Browser applications that communicate over the Internet and use HTTP are commonly referred to as Web browsers.
  • the Web browser application 110 may comprise a single application program, multiple application programs, or a number of software components that work together to implement the functionality of the browser application.
  • a Web browser may comprise a document retrieval component and a separate HTML viewing component, each performing separate tasks of a Web browser.
  • the term "Web browser" refers to a collection of one or more software applications or components that operate to implement all or part of the functionality of a Web browser.
  • Internet ExplorerTM 2.0 by Microsoft Corporation and Netscape NavigatorTM 3.0, by Netscape Communications Corporation, of Mountain View, California, are two examples of Web browser applications that can be used with the present invention when running on the Windows® 3.1, Windows 95®, or Windows NT® operating systems.
  • FIGURE IB illustrates how a host computer 107 may be connected to the Internet so that users of a client computer can connect to the host and download Internet Web pages.
  • the host computer 107 is connected to the server computer 106 by a communications medium 109 that may be a direct link or a network, such as an SNA network.
  • the communications medium 109 enables the server computer 106 and the host computer 107 to communicate by exchanging commands and data.
  • a user operating the Web browser 110 on the client computer 104 communicates with the host computer 107, utilizing the server computer 106 as an intermediary.
  • the client computer 104 sends commands, or queries, over the network 108 to the server computer 106.
  • the server computer 106 sends commands over the communications medium 109 to the host computer 107, and receives data transmitted from the host computer.
  • the server computer 106 sends data from the host computer 107 over the network 108 to the client computer 104 in the form of one or more HTML documents and other data referenced by the HTML documents.
  • Some session controls may initialize a communications link with the host computer 107.
  • the initialization of a communications link is sometimes referred to as "connecting" to the host computer. Destroying the communications link is referred to as “disconnecting" the host computer.
  • the control 112 In a system where the control 112 is repeatedly created and destroyed, the control must repeatedly connect to the host computer each time the control is created. By maintaining the existence of the control 112, repeated connecting to the host computer is not necessary.
  • the Web browser 110 upon receiving a new HTML document over the network 108, interprets the HTML statements and any embedded scripts, and displays a "Web page.” The steps of receiving an HTML document, interpreting the HTML statements, and displaying a Web page are referred to as “visiting" the Web page.
  • a browser "exits" a Web page when it no longer displays the Web page.
  • Some browsers save HTML documents in a portion of memory known as a "cache."
  • the corresponding HTML document may be obtained from the cache instead of from the Web server.
  • the Web page preferably contains information that was transmitted by the host computer 107 over the communications medium 109.
  • the present invention eliminates the need for a Web browser program to recreate the session controls that have been previously created in a Web page.
  • FIGURE 1C illustrates a series of steps 132 wherein the present invention is employed.
  • the Web browser visits a Web page.
  • one or more controls 112 are created on the Web page.
  • the control that operates to establish a connection with the host computer connects to the host computer.
  • the browser exits the first Web page.
  • the browser "visits" a second Web page, performing the necessary actions according to the instructions received in a second HTML document.
  • the step 142 may comprise visits to a plurality of Web pages.
  • the browser revisits the first Web page, which has the associated instructions for creation of the control 112.
  • the control continues communication with the host computer.
  • control 112 created on the first Web page and employing the invention is not destroyed between the creation of the control at step 136 and the continued communication with the host computer at the step 146, even though the Web browser exits the first Web page (step 140) and visits other Web pages (step 142) during this interval. There is no disconnecting from the host computer, and there is not a second connecting to the host computer between the step of connecting to the host computer, at the step 138, and the continued communication with the host computer, at the step 146.
  • the host computer proceeds with the communication in the same manner as if the step 140 of exiting the Web page, the step 142 of visiting new Web pages and the step 144 of revisiting the first Web page, never occurred.
  • the control 112 may continue to execute subsequent to the step 140 of exiting the first Web page, and during the time period of the step 142 of visiting new Web pages and the step 144 of revisiting the first Web page. During this period of execution, the control may, for example, continue to receive data from the server computer, or from the host computer via the server computer, and send commands over the network. The control may process the data or store it at the client computer. Other types of processing during this time interval are also possible.
  • a control 112 that receives audio data from the server computer and plays the audio through a speaker connected to the client computer may continue to receive data and play the audio during the time that a user directs the Web browser to visit other Web pages.
  • a control may also be programmed to receive and process data during this time interval and to notify the user when a certain predetermined condition is satisfied.
  • FIGURE ID illustrates an exemplary Web page 168 containing a control 170 employing the invention.
  • the depicted control contains text and input fields, the input fields providing a mechanism for a user to enter information.
  • the control 170 displays a title 172, and informational text 174.
  • Five labeled input fields 176a-e prompt the user to enter the user's name, password, program name, desired menu, and library name respectively.
  • the control 170 Upon receiving the information in the input fields, the control 170 communicates the entered information to a host computer (107 in FIGURE IB).
  • the host computer sends new information to the control 170.
  • the control updates the text contained within it.
  • the control 170 may update its display many times while the Web browser continues to display the Web page 168.
  • a user may command the Web browser to exit the depicted Web page 168 and visit one or more different Web pages (step 142 of FIGURE 1C). The user may then revisit the depicted Web page 168.
  • the control 170 does not need to be recreated. Instead, the previously created control is redisplayed, along with the text contained therein when the Web browser exited the Web page 168.
  • COM Component Object Model
  • Microsoft Corporation specifies a set of interfaces for a component object.
  • a component object that satisfies the COM interfaces is referred to as a COM object.
  • COM objects can easily communicate with other COM objects or with "client" applications that utilize the COM interface.
  • the COM technology includes mechanisms and interfaces for creating and destroying COM objects.
  • ActiveX is a technology that is based upon COM technology, and allows ActiveX controls to be created for use with Internet applications, such as Web browsers.
  • An ActiveX control is a COM object that adheres to certain specified standards. Instructions to create ActiveX controls can be embedded in HTML documents, and cause the specified controls to be created when the corresponding Web page is displayed in the Web browser. COM objects and ActiveX controls are explained in further detail in Weiying Chen et al., ActiveX Programming Unleashed, (Indianapolis, Sams.Net Publishing, 1997). When a Web browser that does not employ the present invention translates an
  • FIGURE 2 illustrates the components that comprise the present invention.
  • the Web browser 112 is linked to, and communicates with, three software objects that are contained within an OCX server 210: a control 112, a naming control 214, and a class factory 216.
  • OCX servers are explained in further detail below.
  • the control 112 is sometimes referred to as the "target" control.
  • the target control can be any ActiveX control.
  • the invention may be practiced with software objects using other technologies.
  • the Web browser 110 is referred to as the "container" of these software objects.
  • the target control is maintained, in accordance with the methods of the present invention, so that after its creation it remains in existence until the Web browser 110 terminates.
  • the naming control 214 is a transitory control that provides the target control with a unique name that allows the class factory to locate a previously created target control.
  • the class factory 216 creates the target control 112.
  • Class factories are COM objects that operate in accordance with the ActiveX interface. To provide a standard interface for creating ActiveX controls.
  • the class factory 216 handles the creation and destruction of the target control 112.
  • Each control class has a corresponding class factory, which creates only controls of the corresponding class.
  • the invention may be employed with any class of control. In order to better understand the invention described below, certain aspects of class factories that are relevant to the following discussion are first described.
  • ActiveX controls represent computer system elements, and contain program code, in the form of "methods," and data.
  • classes are abstract generic descriptions of controls and their behaviors.
  • a class defines a certain category or grouping of methods and data within a control. The methods of a control define the control's behavior.
  • a class serves as a template to define the behavior of a control that is created or "instantiated” from the class.
  • a control, or instance of a class is a specific individual entity, with its behaviors defined by its class. Many controls can be instantiated from a single control class.
  • the preferred embodiment of the invention includes a modification to the standard COM library.
  • the standard COM library includes functions that supply basic services to COM objects and their containers.
  • CoCreatelnstance is called by a container to create a COM object.
  • CoCreatelnstance is called with a parameter that identifies the object's class, and uses this parameter to locate the correct class factory object.
  • the class factory object is then invoked with a command to create, or instantiate, a new object. In particular, the command is an invocation of the method "Createlnstance.”
  • a class factory's Createlnstance method creates an instance of the corresponding COM object.
  • the present invention utilizes a section of shared memory 218 that is accessible by the naming control 214 and the class factory 216.
  • the shared memory 218 is used to communicate a target control name from the naming control 214 to the class factory 216.
  • the class factory 216 has an associated control list 220, which is preferably a
  • the control list 220 contains a list of all controls 112 employing the invention that have been created by the corresponding class factory, and that currently exist, along with a corresponding reference pointer to each control.
  • each control in the control list is identified by a unique identifier.
  • the identifier comprises a name specified in the corresponding HTML document and passed by the naming control 214.
  • the class factory updates and reads information from the control list.
  • FIGURE 3 illustrates a series of steps 302 that are performed by the naming control 214 during its initialization to pass a control name to the class factory 216 in accordance with the present invention.
  • the naming control 214 receives the target control name as a parameter during invocation of the naming control.
  • the control name is converted to all upper case characters.
  • the modified control name is stored in the shared memory 218.
  • the Web browser invokes the class factory 216 by sending the class factory a command instructing the class factory to create a new control.
  • One means of invoking the class factory is to call the function CoCreatelnstance, as described above.
  • FIGURE 4 illustrates a series of steps 402 that are performed by the class factory 216, in accordance with the present invention, upon receipt of a command to create a new control 112. Prior to discussing FIGURE 4, a brief explanation of reference counts is provided.
  • Every ActiveX control has a corresponding reference count that indicates the number of reference pointers to the control that are in use by a client application.
  • a control passes a pointer to itself, it increments its corresponding reference count.
  • the client When a client application is finished using a reference pointer to a control, the client must invoke the "Release" method on the control.
  • the Release method causes the control to decrement its corresponding reference count.
  • a control destroys itself when its reference count drops to zero.
  • the class factory retrieves the control name that was stored by the naming control 214 in the shared memory 218.
  • the class factory clears the control name from the shared memory.
  • the class factory determines whether the retrieved name is NULL, which indicates that a control name has not been retrieved. If the retrieved name is NULL, the class factory creates a new control at a step 410. After creating a new control, the class factory returns a reference pointer to the control to the browser at a step 412.
  • the class factory looks for the retrieved control name in the control list 220 at a step 414.
  • the control list contains a list of all controls of the same class that currently exist, along with a corresponding reference pointer to each control.
  • the class factory determines whether the retrieved control name and the corresponding reference pointer exist in the control list. If the name exists, a new control does not need to be created. Instead, at the step 412, the class factory returns the pointer to the existing control. The existing control is thereafter used, instead of creating a new control.
  • the class factory creates a new control.
  • the reference count corresponding to the newly created control is incremented by one. Incrementing the reference count by one prevents the reference count from ever being decrement to zero. Therefore, the control 112 will not be deleted by the normal mechanisms that utilize reference counts to determine whether to delete a control.
  • the control name and the corresponding pointer to the newly created control are added to the control list.
  • the pointer to the newly created control is returned.
  • FIGURE 4 also illustrates a portion of the mechanism that allows the creator of a Web page to determine whether a control should persist after the Web browser exits from the associated Web page.
  • the class factory retrieves the control name that was stored by the naming control in the shared memory.
  • the class factory determines whether the retrieved name is NULL and, if it is NULL, creates a new control at the step 410. Therefore, if a naming control has not stored a control name in the shared memory prior to the step 404, the class factory will create a new control and bypass the steps of incrementing the reference count (step 420) and adding the control to the control list (step 422). This will cause the newly created control to be destroyed when the Web browser exits the Web page. By avoiding the creation of a naming control corresponding to a target control, the target control will not receive a control name, and therefore will be destroyed when the Web browser exits the Web page.
  • FIGURE 5 illustrates a series of steps 502 that are performed by a control employing the invention and having a corresponding control window, upon receiving an OnClose event, in accordance with the present invention.
  • the control 112 determines whether the control has a control name in the corresponding control list.
  • the control maintains a flag with a value indicative of whether the control has a control name in the control list.
  • this flag is set to a value indicating that the name is in the list.
  • the control checks the value of this flag to determine whether its name is in the control list. If it is determined, at the step 506, that the control 112 does not have a name in the control list, the control closes the window at a step 508.
  • control window continues in existence. Controls that do not have corresponding windows do not receive an OnClose event, and therefore do not execute the series of steps 502 to handle the event.
  • control identifier and the control list provide a mechanism by which a control is linked to a specific Web page, and specifically to one or more HTML instructions to create the control.
  • this linking mechanism allows the methods of the invention to determine whether the specific control corresponding to the instruction exists. It also allows the methods of the invention to locate the specific existing control.
  • FIGURE 6 illustrates a series of steps 602 that are performed in accordance with the present invention when the Web browser terminates.
  • An OCX server functions similarly to a dynamic link library (DLL). The protocols that must be supported by an OCX server are dependent on the particular operating system on which it runs.
  • DLL dynamic link library
  • An OCX server provides a function called "DllMain,” which is called by the operating system.
  • the DllMain function receives, as one of its parameters, a value that indicates a specific state of the operating system, or a command to perform a particular action.
  • One of these states is defined by the predefined value "DLL_PROCESS_DETACH.”
  • the operating system calls the DllMain function with the DLL_PROCESS_DETACH parameter providing the OCX server the opportunity to perform any termination tasks.
  • the OCX server receives a DLL_PROCESS_DETACH command from the operating system.
  • the Web browser has no indication that any controls continue to exist.
  • the OCX server must delete the remaining controls.
  • the "destructor" method for the control list object is invoked. Every object has a destructor method that is invoked by a run-time library linked to the OCX server. The destructor method in the control list object executes the following loop to delete all active controls employing the invention.
  • the control list object determines whether the control list is empty. If it is determined that the control list is empty, processing terminates. If it is determined that the session control list is not empty, the control list object releases the first control in the list at a step 610. At a step 612, the entry corresponding to the control deleted at the step 610 is removed from the control list. The processing then loops back to the step 608 to determine whether any more controls exist. In this manner the loop containing the steps 608, 610, and 612 continues until all controls employing the invention have been deleted.
  • FIGURE 7 illustrates an exemplary listing of Hypertext Markup Language (HTML) instructions that are inserted in an HTML document to create a naming control and a target control.
  • HTML instructions are indicated by the placement of "tags.” Tags are denoted by the ' ⁇ ' and '>' symbols bracketing the actual tag. Most HTML instructions have a beginning tag and an ending tag, with the ending tag indicated by the slash symbol (V).
  • FIGURE 7 includes the " ⁇ OBJECT>" and " ⁇ /OBJECT>” tags delimiting an instruction to create an OBJECT.
  • the OBJECT tag 702 specifies the creation of the naming control.
  • the next OBJECT tag 704 specifies the creation of a corresponding target control.
  • the PARAM NAME tag 706 passes a parameter to the naming control.
  • the parameter name immediately follows the PARAM NAME tag.
  • the parameter name is "ControlName”
  • the designated identifier follows the key word VALUE.
  • the identifier "AS400" is specified as the target control name. If the instruction to create the naming control, designated by the OBJECT tag 702, is not included in the HTML document, the naming control corresponding to the target control is not created. There will therefore be no control name passed to the target control's class factory. As discussed above, this results in the creation of a new control that does not have the property of remaining in existence after the Web browser exits the corresponding Web page.

Abstract

A method for preserving the existence of a control during the lifetime of its container application is provided. A naming control is specified in an HTML document prior to specifying the target control. The naming control receives as a parameter a control identifier, which is passed to the class factory of the target control prior to creation of the target control. The class factory maintains a control list, with an entry for each control identifier corresponding to a currently active control. When a Web page is exited, the control is not deleted. Upon returnig to the Web page and prior to creating a new control, the control list is checked to determine whether a control with a desired identifier is currently active. If so, a pointer to the corresponding control is returned, rather than create a new control. In this manner, a connection between a control and a host computer over a network can be maintained, without the necessity to destroy the connection and create a new connection each time the corresponding Web page is exited and revisited.

Description

METHOD FOR PRESERVING THE STATE OF A CONTROL DURING THE
LD7ETIME OF ITS CONTAINER
Field of the Invention The present invention relates to methods of controlling communication between a client computer and a server computer, and in particular, methods of controlling the creation and destruction of software objects on a Web page.
Background of the Invention
In recent years, there has been a tremendous proliferation of computers connected to a global network known as the Internet. A client computer connected to the Internet can download digital information from special computers called World
Wide Web servers, or simply Web servers, that are also connected to the Internet.
Web browser programs running on the client computers translate the downloaded digital information into a visual form called a "Web page" that is perceptible by a user.
In the past, the content or data contained in a Web page was static and did not change after being displayed in a Web browser program. More recent technology allows the inclusion of program code with the digital information downloaded from
Web servers to define software components that execute while a Web page is being viewed with the browser program. The software components provide interactive, dynamic content in Web pages. The components may establish and maintain interactive sessions between a user and remote computers, display animation, or present regularly updated information. Microsoft Corporation, of Redmond,
Washington, has created a standard interface for the software components that comprise the program code. The standard is referred to as ActiveX, and software components that are compliant with ActiveX are referred to as ActiveX controls. For example, a Stock Ticker ActiveX control can display current stock prices that are continuously scrolled across a defined area within a Web page that is displayed by a Web browser.
In addition to displaying static and dynamic information in a Web page, Web browsers and Web servers provide the capability for users to navigate among numerous Web pages along with the capability of returning to a previously viewed Web page. Currently, when a user exits a Web page, the Web browser destroys the ActiveX controls contained therein. If the user later returns to a previously viewed Web page, the Web browser must create a new set of ActiveX controls. For controls like the Stock Ticker described above, this is acceptable because a Stock Ticker control needs only to continually retrieve the latest stock prices and display them.
In some instances, it is desirable that an ActiveX control preserves a specific state between invocations by the Web browser. For example, an ActiveX control that accesses a host computer preserves a connection with the host and the current host application screen to which the user has navigated. In addition, the ActiveX control preserves any data the user has entered within the host application screen. In the past, ActiveX controls are destroyed when a Web browser exits a Web page by navigating to a different Web page. When a control is destroyed and recreated upon leaving and returning to a Web page, the host connection must be reestablished. The user must then connect to the host, navigate to the appropriate application screen, and reenter any data that was lost.
To eliminate the need to recreate a control each time a Web page is accessed, it is desirable to provide the ability for a software component, such as an ActiveX control, to remain in existence and retain state information when a user leaves a Web page and returns to it. In addition, it is desirable that an ActiveX control retain its link, or correspondence to a particular Web page, and that any reference to the control remain valid when a Web browser returns to the page containing the control. It is also desirable to allow the ActiveX control to execute after a user exits from the corresponding Web page. Summary of the Invention
The present invention is a method of controlling the existence of a software component that is associated with a Web page in order to reuse the software component when the corresponding Web page is revisited. The invention provides a naming control and a class factory object, in addition to modifications to the normal processing within a control. A Web browser receives one or more instructions that define a Web page. The browser translates the instructions to create a Web page, and invokes a command to create a control. The class factory object receives the command and determines whether the desired control has been previously created and remains in existence. If the desired control exists, the class factory returns a reference to the control without creating a new control. If the desired control does not exist, the class factory creates the desired control, returning a reference to the newly created control.
The naming control passes a predetermined identifier of the desired control to the class factory. The class factory uses the identifier in its determination of whether the desired control already exists. The class factory maintains a list of control identifiers and determines whether the desired session control already exists by determining whether the identifier corresponding to a desired session control exists in the list.
The present invention also provides a method of preventing a control from being destroyed when the Web browser exits from a Web page. When the control is created, the class factory increments a reference count corresponding to the control. Incrementing the reference count prevents the reference count from being decremented to zero, thereby preventing the destruction of the control when the Web browser exits from a Web page. As will be readily appreciated from the foregoing description, the present invention provides the ability to maintain the existence of a control associated with a Web page beyond the period of the visit to the Web page. When the Web browser exits the Web page and revisits the page, the control has not been destroyed. The control identifier provides a mechanism to link the control with the specific instruction to create it, so that when the instruction is executed upon revisiting the Web page, a reference to the existing control can be used. The invention allows a dynamic control to continue executing after exiting from the Web page, and upon a revisit to the Web page. In situations where the control maintains a communications session with a host computer, the invention allows the control to continue the communications session, without having to reestablish it. The invention also has the advantage that the program code to implement it can accept instructions to either have the control continue beyond exiting from its Web page, or to destroy itself when the Web browser exits the Web page. The instructions can be supplied in the form of HTML instructions in the HTML document. Brief Description of the Drawings The foregoing aspects and many of the attendant advantages of this invention will become more readily appreciated as the same becomes better understood by reference to the following detailed description, when taken in conjunction with the accompanying drawings, wherein:
FIGURES 1A and IB are block diagrams illustrating an exemplary network architecture in which the invention is used;
FIGURE 1C is a flow diagram illustrating the process of creating and maintaining a connection with a host computer in accordance with the present invention.
FIGURE ID illustrates an exemplary Web page that contains a control in accordance with the present invention.
FIGURE 2 is a block diagram illustrating an architecture in which the invention is used; FIGURE 3 is a flow diagram illustrating the process of creating a new control name in accordance with the present invention;
FIGURE 4 is a flow diagram illustrating the process of handling a command to create an object in accordance with the present invention;
FIGURE 5 is a flow diagram illustrating the process that occurs when exiting from a Web page in accordance with the present invention;
FIGURE 6 is a flow diagram illustrating the termination of a Web browser in accordance with the present invention; and
FIGURE 7 is a listing of exemplary HTML instructions used to create the controls of the present invention. Detailed Description of the Preferred Embodiment
As indicated above, the present invention is a method of creating ActiveX controls that are not destroyed when a Web browser exits from a Web page. The controls are reused when the Web browser revisits the Web page. FIGURE 1A illustrates an exemplary architecture 102 in which one or more client computers 104 communicate with one or more server computers 106 via a network 108, or other communication medium. Each client computer 104 is preferably a personal computer of the type that includes an amount of volatile memory, and non- volatile memory such as a hard disk or other data storage device. In addition, each client computer 104 includes a processor, a keyboard, a directional input device such as a mouse, and a monitor, such as a cathode ray tube (CRT) or a liquid crystal display (LCD). Programs executed by the computer preferably use a graphical user interface that is displayed on the monitor. An example of a graphical user interface is the Windows® 3.1 operating system produced by the Microsoft Corporation.
The server computer 106 is preferably a personal computer having the elements of a client computer 104 as described above. The client computer 104 and the server computer 106 communicate with each other via the network 108, which could be a wide area network, a local area network, or a TCP IP connection. In the presently preferred embodiment of the invention, the network 108 is the Internet. The Internet is a commonly used wide area network that comprises many networks linked together to form a global network. The Internet, wide and local area networks, and TCP/TP communication mediums are well understood by those of ordinary skill in the art and need not be discussed in further detail here, except as they relate to the present invention.
Connection of the client and server computers to the Internet is provided in a conventional manner by an Internet service provider. Using the Internet, the server computers 106 are able to communicate with the client computers 104 utilizing a protocol known as Hypertext Transfer Protocol (HT.). When operated in this manner, the server computers are commonly referred to as World Wide Web servers, or simply Web servers. When the network 108 is a local area network, it is referred to as an "intranet."
The Web server computers 106 transmit documents over the network 108 to one or more of the client computers 104. Each server executes a Web server program (not shown) that receives requests for documents from the client computer 104, and, in response, transmits documents to the client computer 104 over the network 108. In the presently preferred embodiment of the invention, the document is comprised of HyperText Markup Language (HTML) statements and embedded scripts that together are referred to as an HTML document.
HTML is a markup language, and provides document formatting information along with text. A script is a series of one or more instructions from a programming language that is designed to be embedded within an HTML document. Visual Basic Script, created by the Microsoft Corporation, of Redmond, Washington, and JavaScript, created by Sun Microsystems, of Mountain View, California, are two commonly used scripting languages. A number of Web server programs are commercially available, such as Microsoft's Internet Information Server and the Netscape Communications Server by the Netscape Corporation. FIGURE IB illustrates, in further detail, the network architecture of FIGURE 1 A. The client computer 104 executes a browser application 110 that communicates with the Web server programs running on the server computers 106 and displays HTML documents received from the server computer 106. Browser applications that communicate over the Internet and use HTTP are commonly referred to as Web browsers. The Web browser application 110 may comprise a single application program, multiple application programs, or a number of software components that work together to implement the functionality of the browser application. For example, a Web browser may comprise a document retrieval component and a separate HTML viewing component, each performing separate tasks of a Web browser. As used in this application, the term "Web browser" refers to a collection of one or more software applications or components that operate to implement all or part of the functionality of a Web browser. Internet Explorer™ 2.0 by Microsoft Corporation and Netscape Navigator™ 3.0, by Netscape Communications Corporation, of Mountain View, California, are two examples of Web browser applications that can be used with the present invention when running on the Windows® 3.1, Windows 95®, or Windows NT® operating systems.
FIGURE IB illustrates how a host computer 107 may be connected to the Internet so that users of a client computer can connect to the host and download Internet Web pages. The host computer 107 is connected to the server computer 106 by a communications medium 109 that may be a direct link or a network, such as an SNA network. The communications medium 109 enables the server computer 106 and the host computer 107 to communicate by exchanging commands and data. In such an embodiment, a user operating the Web browser 110 on the client computer 104 communicates with the host computer 107, utilizing the server computer 106 as an intermediary. The client computer 104 sends commands, or queries, over the network 108 to the server computer 106. The server computer 106 sends commands over the communications medium 109 to the host computer 107, and receives data transmitted from the host computer. The server computer 106 sends data from the host computer 107 over the network 108 to the client computer 104 in the form of one or more HTML documents and other data referenced by the HTML documents.
Some session controls may initialize a communications link with the host computer 107. The initialization of a communications link is sometimes referred to as "connecting" to the host computer. Destroying the communications link is referred to as "disconnecting" the host computer. In a system where the control 112 is repeatedly created and destroyed, the control must repeatedly connect to the host computer each time the control is created. By maintaining the existence of the control 112, repeated connecting to the host computer is not necessary. The Web browser 110, upon receiving a new HTML document over the network 108, interprets the HTML statements and any embedded scripts, and displays a "Web page." The steps of receiving an HTML document, interpreting the HTML statements, and displaying a Web page are referred to as "visiting" the Web page. A browser "exits" a Web page when it no longer displays the Web page. Some browsers save HTML documents in a portion of memory known as a "cache." When the browser visits a Web page that has previously been visited, the corresponding HTML document may be obtained from the cache instead of from the Web server. The Web page preferably contains information that was transmitted by the host computer 107 over the communications medium 109. As indicated above, the present invention eliminates the need for a Web browser program to recreate the session controls that have been previously created in a Web page. The basic operation of the invention is shown in the flow chart in FIGURE 1C. FIGURE 1C illustrates a series of steps 132 wherein the present invention is employed. At a step 134, the Web browser visits a Web page. At a step 136, one or more controls 112 (FIGURE IB) are created on the Web page. At a step 138, the control that operates to establish a connection with the host computer connects to the host computer. At a step 140, the browser exits the first Web page. At a step 142, the browser "visits" a second Web page, performing the necessary actions according to the instructions received in a second HTML document. The step 142 may comprise visits to a plurality of Web pages. At a step 144, the browser revisits the first Web page, which has the associated instructions for creation of the control 112. At a step 146, the control continues communication with the host computer.
An important feature in this series of steps 132 lies in the absence of certain steps. Specifically, the control 112 created on the first Web page and employing the invention is not destroyed between the creation of the control at step 136 and the continued communication with the host computer at the step 146, even though the Web browser exits the first Web page (step 140) and visits other Web pages (step 142) during this interval. There is no disconnecting from the host computer, and there is not a second connecting to the host computer between the step of connecting to the host computer, at the step 138, and the continued communication with the host computer, at the step 146. The host computer proceeds with the communication in the same manner as if the step 140 of exiting the Web page, the step 142 of visiting new Web pages and the step 144 of revisiting the first Web page, never occurred. In addition, the control 112 may continue to execute subsequent to the step 140 of exiting the first Web page, and during the time period of the step 142 of visiting new Web pages and the step 144 of revisiting the first Web page. During this period of execution, the control may, for example, continue to receive data from the server computer, or from the host computer via the server computer, and send commands over the network. The control may process the data or store it at the client computer. Other types of processing during this time interval are also possible. For example, a control 112 that receives audio data from the server computer and plays the audio through a speaker connected to the client computer may continue to receive data and play the audio during the time that a user directs the Web browser to visit other Web pages. A control may also be programmed to receive and process data during this time interval and to notify the user when a certain predetermined condition is satisfied.
FIGURE ID illustrates an exemplary Web page 168 containing a control 170 employing the invention. The depicted control contains text and input fields, the input fields providing a mechanism for a user to enter information. As depicted, the control 170 displays a title 172, and informational text 174. Five labeled input fields 176a-e prompt the user to enter the user's name, password, program name, desired menu, and library name respectively. Upon receiving the information in the input fields, the control 170 communicates the entered information to a host computer (107 in FIGURE IB). The host computer sends new information to the control 170. The control then updates the text contained within it. During a communications session between the control and the host computer, the control 170 may update its display many times while the Web browser continues to display the Web page 168.
As discussed above, while the communications link between the control 170 and the host computer is active, a user may command the Web browser to exit the depicted Web page 168 and visit one or more different Web pages (step 142 of FIGURE 1C). The user may then revisit the depicted Web page 168. By employing the present invention, when the Web browser revisits the depicted Web page, the control 170 does not need to be recreated. Instead, the previously created control is redisplayed, along with the text contained therein when the Web browser exited the Web page 168.
Prior to discussing the components that comprise the invention, a brief summary of the technology used in the preferred equipment is provided. Commercial Web browsers include an interface that provides the ability to communicate with software components. The Component Object Model (COM) is a standard, developed by Microsoft Corporation, that specifies a set of interfaces for a component object. A component object that satisfies the COM interfaces is referred to as a COM object. COM objects can easily communicate with other COM objects or with "client" applications that utilize the COM interface. The COM technology includes mechanisms and interfaces for creating and destroying COM objects.
ActiveX is a technology that is based upon COM technology, and allows ActiveX controls to be created for use with Internet applications, such as Web browsers. An ActiveX control is a COM object that adheres to certain specified standards. Instructions to create ActiveX controls can be embedded in HTML documents, and cause the specified controls to be created when the corresponding Web page is displayed in the Web browser. COM objects and ActiveX controls are explained in further detail in Weiying Chen et al., ActiveX Programming Unleashed, (Indianapolis, Sams.Net Publishing, 1997). When a Web browser that does not employ the present invention translates an
HTML document, the browser invokes commands that create the ActiveX controls specified in the HTML document. When the browser exits the Web page, the browser invokes commands that cause the ActiveX controls associated with the Web page to be deleted. When the browser returns to a previously "visited" Web page, the ActiveX controls associated with the revisited Web page are recreated. As will become apparent in the discussion that follows, the present invention provides a mechanism by which controls employing the invention remain in existence even after a browser exits a Web page and do not need to be recreated upon returning to the previously visited Web page. FIGURE 2 illustrates the components that comprise the present invention.
The Web browser 112 is linked to, and communicates with, three software objects that are contained within an OCX server 210: a control 112, a naming control 214, and a class factory 216. OCX servers are explained in further detail below. For purposes of this application, the control 112 is sometimes referred to as the "target" control. In the preferred embodiment, the target control can be any ActiveX control. The invention may be practiced with software objects using other technologies. The Web browser 110 is referred to as the "container" of these software objects. As discussed in further detail below, the target control is maintained, in accordance with the methods of the present invention, so that after its creation it remains in existence until the Web browser 110 terminates. The naming control 214 is a transitory control that provides the target control with a unique name that allows the class factory to locate a previously created target control. In accordance with the present invention, the class factory 216 creates the target control 112. Class factories are COM objects that operate in accordance with the ActiveX interface. To provide a standard interface for creating ActiveX controls. As discussed in further detail below, the class factory 216 handles the creation and destruction of the target control 112. Each control class has a corresponding class factory, which creates only controls of the corresponding class. The invention may be employed with any class of control. In order to better understand the invention described below, certain aspects of class factories that are relevant to the following discussion are first described.
ActiveX controls represent computer system elements, and contain program code, in the form of "methods," and data. As will be recognized by those skilled in the art of object-oriented programming, classes are abstract generic descriptions of controls and their behaviors. A class defines a certain category or grouping of methods and data within a control. The methods of a control define the control's behavior. A class serves as a template to define the behavior of a control that is created or "instantiated" from the class. A control, or instance of a class, is a specific individual entity, with its behaviors defined by its class. Many controls can be instantiated from a single control class. The preferred embodiment of the invention includes a modification to the standard COM library. The standard COM library includes functions that supply basic services to COM objects and their containers. One of these library functions, having the name "CoCreatelnstance" is called by a container to create a COM object. CoCreatelnstance is called with a parameter that identifies the object's class, and uses this parameter to locate the correct class factory object. The class factory object is then invoked with a command to create, or instantiate, a new object. In particular, the command is an invocation of the method "Createlnstance." In accordance with COM technology, a class factory's Createlnstance method creates an instance of the corresponding COM object. The present invention utilizes a section of shared memory 218 that is accessible by the naming control 214 and the class factory 216. The shared memory 218 is used to communicate a target control name from the naming control 214 to the class factory 216. The class factory 216 has an associated control list 220, which is preferably a
COM object. One control list exists for each class factory 216. The control list 220 contains a list of all controls 112 employing the invention that have been created by the corresponding class factory, and that currently exist, along with a corresponding reference pointer to each control. Preferably, each control in the control list is identified by a unique identifier. In the presently preferred embodiment of the invention, the identifier comprises a name specified in the corresponding HTML document and passed by the naming control 214. The class factory updates and reads information from the control list.
FIGURE 3 illustrates a series of steps 302 that are performed by the naming control 214 during its initialization to pass a control name to the class factory 216 in accordance with the present invention. At a step 304, the naming control 214 receives the target control name as a parameter during invocation of the naming control. At a step 306, the control name is converted to all upper case characters. At a step 308, the modified control name is stored in the shared memory 218. After the creation and initialization of the naming control, the Web browser invokes the class factory 216 by sending the class factory a command instructing the class factory to create a new control. One means of invoking the class factory is to call the function CoCreatelnstance, as described above. FIGURE 4 illustrates a series of steps 402 that are performed by the class factory 216, in accordance with the present invention, upon receipt of a command to create a new control 112. Prior to discussing FIGURE 4, a brief explanation of reference counts is provided.
Every ActiveX control has a corresponding reference count that indicates the number of reference pointers to the control that are in use by a client application. When a control passes a pointer to itself, it increments its corresponding reference count. When a client application is finished using a reference pointer to a control, the client must invoke the "Release" method on the control. The Release method causes the control to decrement its corresponding reference count. A control destroys itself when its reference count drops to zero. At a step 404, the class factory retrieves the control name that was stored by the naming control 214 in the shared memory 218. At a step 406, the class factory clears the control name from the shared memory.
At a step 408, the class factory determines whether the retrieved name is NULL, which indicates that a control name has not been retrieved. If the retrieved name is NULL, the class factory creates a new control at a step 410. After creating a new control, the class factory returns a reference pointer to the control to the browser at a step 412.
If it is determined at step 408, that the retrieved control name is not NULL, the class factory looks for the retrieved control name in the control list 220 at a step 414. As discussed above, the control list contains a list of all controls of the same class that currently exist, along with a corresponding reference pointer to each control.
At a step 416, the class factory determines whether the retrieved control name and the corresponding reference pointer exist in the control list. If the name exists, a new control does not need to be created. Instead, at the step 412, the class factory returns the pointer to the existing control. The existing control is thereafter used, instead of creating a new control.
If, at the step 416, it is determined that the retrieved control name does not exist in the control list, at a step 418, the class factory creates a new control. At a step 420, the reference count corresponding to the newly created control is incremented by one. Incrementing the reference count by one prevents the reference count from ever being decrement to zero. Therefore, the control 112 will not be deleted by the normal mechanisms that utilize reference counts to determine whether to delete a control. At a step 422, the control name and the corresponding pointer to the newly created control are added to the control list. At the step 412, the pointer to the newly created control is returned.
As illustrated in FIGURE 4, and discussed above, the series of steps 402 performed by the class factory results in returning, to the browser or other client that invoked the class factory, a pointer to a control. It is transparent to the browser whether a new control is created at the step 410 or the step 418, or whether a pointer to an existing control is returned. In either case, the browser uses the pointer to the control in the same manner. The invention therefore does not require any modification of the browser. FIGURE 4 also illustrates a portion of the mechanism that allows the creator of a Web page to determine whether a control should persist after the Web browser exits from the associated Web page. As discussed above, at a step 404, the class factory retrieves the control name that was stored by the naming control in the shared memory. At a step 408, the class factory determines whether the retrieved name is NULL and, if it is NULL, creates a new control at the step 410. Therefore, if a naming control has not stored a control name in the shared memory prior to the step 404, the class factory will create a new control and bypass the steps of incrementing the reference count (step 420) and adding the control to the control list (step 422). This will cause the newly created control to be destroyed when the Web browser exits the Web page. By avoiding the creation of a naming control corresponding to a target control, the target control will not receive a control name, and therefore will be destroyed when the Web browser exits the Web page.
Some controls have a window that appears on the Web page. When a Web browser exits from a Web page, the operating system sends a command to all controls that have a corresponding window on the Web page. The command initiates the closing of the window corresponding to the control. In one implementation, the command results in a "OnClose" event being triggered in each control. The default handler for the OnClose event closes the window by calling the system function "DestroyWindow." FIGURE 5 illustrates a series of steps 502 that are performed by a control employing the invention and having a corresponding control window, upon receiving an OnClose event, in accordance with the present invention.
At a step 506, the control 112 determines whether the control has a control name in the corresponding control list. In one implementation, the control maintains a flag with a value indicative of whether the control has a control name in the control list. At the time when the control is created and the name is added to the control list (steps 418, 420, and 422 of FIGURE 4), this flag is set to a value indicating that the name is in the list. At the step 506, the control checks the value of this flag to determine whether its name is in the control list. If it is determined, at the step 506, that the control 112 does not have a name in the control list, the control closes the window at a step 508.
If, at the step 506, it is determined that the control has a control name in the control list, the processing 502 terminates, without closing its window. In this manner, the control window continues in existence. Controls that do not have corresponding windows do not receive an OnClose event, and therefore do not execute the series of steps 502 to handle the event.
As can be understood by the above discussion, the control identifier and the control list provide a mechanism by which a control is linked to a specific Web page, and specifically to one or more HTML instructions to create the control. By providing an association between a control and its corresponding creation instructions, this linking mechanism allows the methods of the invention to determine whether the specific control corresponding to the instruction exists. It also allows the methods of the invention to locate the specific existing control. FIGURE 6 illustrates a series of steps 602 that are performed in accordance with the present invention when the Web browser terminates. Prior to discussing FIGURE 6, a brief explanation of the functioning of OCX servers is provided. An OCX server functions similarly to a dynamic link library (DLL). The protocols that must be supported by an OCX server are dependent on the particular operating system on which it runs. These protocols are documented in various publications, some of which are specific to a specific operating system. The following discussion pertains to an OCX server running on a Win32 operating system with the Microsoft Foundation Class Library. For detailed information regarding use of the Microsoft Foundation Class Library, the reader is directed to Microsoft Visual C++ Programming With MFC (Microsoft Press, 1995).
An OCX server provides a function called "DllMain," which is called by the operating system. The DllMain function receives, as one of its parameters, a value that indicates a specific state of the operating system, or a command to perform a particular action. One of these states is defined by the predefined value "DLL_PROCESS_DETACH." Immediately before the OCX server is unloaded, the operating system calls the DllMain function with the DLL_PROCESS_DETACH parameter providing the OCX server the opportunity to perform any termination tasks.
At a step 604, the OCX server receives a DLL_PROCESS_DETACH command from the operating system. At the time of receiving a DLL PROCESS DETACH command, the Web browser has no indication that any controls continue to exist. At this time, the OCX server must delete the remaining controls. At a step 606, the "destructor" method for the control list object is invoked. Every object has a destructor method that is invoked by a run-time library linked to the OCX server. The destructor method in the control list object executes the following loop to delete all active controls employing the invention.
At a step 608, the control list object determines whether the control list is empty. If it is determined that the control list is empty, processing terminates. If it is determined that the session control list is not empty, the control list object releases the first control in the list at a step 610. At a step 612, the entry corresponding to the control deleted at the step 610 is removed from the control list. The processing then loops back to the step 608 to determine whether any more controls exist. In this manner the loop containing the steps 608, 610, and 612 continues until all controls employing the invention have been deleted.
FIGURE 7 illustrates an exemplary listing of Hypertext Markup Language (HTML) instructions that are inserted in an HTML document to create a naming control and a target control. HTML instructions are indicated by the placement of "tags." Tags are denoted by the '<' and '>' symbols bracketing the actual tag. Most HTML instructions have a beginning tag and an ending tag, with the ending tag indicated by the slash symbol (V). For example, FIGURE 7 includes the "<OBJECT>" and "</OBJECT>" tags delimiting an instruction to create an OBJECT. The OBJECT tag 702 specifies the creation of the naming control. The next OBJECT tag 704 specifies the creation of a corresponding target control. The PARAM NAME tag 706 passes a parameter to the naming control. The parameter name immediately follows the PARAM NAME tag. As illustrated, the parameter name is "ControlName" The designated identifier follows the key word VALUE. As illustrated in FIGURE 7, the identifier "AS400" is specified as the target control name. If the instruction to create the naming control, designated by the OBJECT tag 702, is not included in the HTML document, the naming control corresponding to the target control is not created. There will therefore be no control name passed to the target control's class factory. As discussed above, this results in the creation of a new control that does not have the property of remaining in existence after the Web browser exits the corresponding Web page.
While the preferred embodiment of the invention has been illustrated and described, it will be appreciated that various changes can be made therein without departing from the spirit and scope of the invention. Reference to specific technologies, such as the ComponentObject model, ActiveX controls, and OCX servers or particular operating systems and commercially available libraries should be considered exemplary technologies, and not an indication that the invention is limited to these technologies. One skilled in this art should have the ability to implement the disclosed invention utilizing different operating systems, programming tools, and other technologies.

Claims

The embodiments of the invention in which an exclusive property or privilege is claimed are defined as follows:
1. A method of controlling the creation of a software object associated with a markup language document that at least partially defines a Web page displayed by a browser when the browser visits the Web page, the browser executing on a client computer connectable to a server computer, the method comprising: receiving the markup language document that at least partially defines a Web page; analyzing the markup language document to determine if an instruction to create the software object is contained therein; determining whether the software object already exists due to having been created in response to previously receiving the markup language document associated with the software object; and if the software object does not already exist, creating the software object.
2. The method of Claim 1, further comprising: providing an indication that the software object is not to be deleted when the browser exits the Web page.
3. The method of Claim 2, wherein the step of providing an indication that the software object is not to be deleted when the browser exits the Web page comprises: modifying a count value indicative of the number of references to the software object that exist, the modification preventing the count value from becoming a predetermined value that indicates there are zero references to the software object.
4. The method of Claim 1, further comprising: if the software object already exists, providing a reference to the software object.
5. The method of Claim 4, further comprising providing an identifier uniquely associated with the software object, and wherein the step of providing a reference to the software object comprises using the identifier to locate the software object.
6. The method of Claim 5, wherein a class factory object performs the step of creating the software object, the method further comprising: creating a naming object, the naming object communicating the object identifier to the class factory object.
7. The method of Claim 6, wherein the naming object stores the object identifier associated with the software object in a shared memory location accessible by the class factory object.
8. The method of Claim 1, further comprising: providing an identifier uniquely associated with the software object; and wherein the step of determining whether the software object already exists uses the identifier to determine whether a reference to the software object exists.
9. The method of Claim 1, further comprising: receiving a notification that the browser is exiting from the document; determining whether to delete the software object; and in response to the determining whether to delete the software object, selectively deleting the software object.
10. The method of Claim 9, further comprising: if the software object is not deleted in response to the determining whether to delete the software object communicating data between the software object and the server computer subsequent to said step of determining whether to delete the software object.
11. The method of Claim 1, further comprising providing a link between the software object and its associated markup language document, and wherein the step of determining whether the software object exists uses the link to locate a reference to the software object.
12. The method of Claim 1, further comprising providing a link between the software object and the instruction to create the software object, and wherein the step of determining whether the software object exists uses the link to locate a reference to the software object.
13. The method of Claim 1, wherein the server computer communicates with a host computer, the method further comprising: sending a command from the software object to initiate communications between the software object and the host computer; in response to determining whether the software object already exists, if the software object already exists, providing a reference to the software object. communicating a command from the software object to the host computer, the communicating occurring subsequent to the step of returning a reference to the software object; and wherein the method does not include a second step of sending a command from the software object to initiate communications between the software object and the host computer.
14. A method of maintaining the existence of a target control executing on a client computer connected to a server computer by a network, wherein the target control is associated with a document and created when the document is displayed by a browser application, the method comprising: creating the target control storing a reference to the target control; receiving a notification resulting from the browser application exiting the document associated with the session control; not deleting the target control upon receiving the notification; subsequent to the notification, receiving a command to create the target control; in response to receiving the command to create the target control, determining whether the target control exists; and in response to receiving the command to create the target control, if the target control exists, returning the reference to the target control.
15. The method of Claim 14, further comprising communicating data between the target control and the server computer subsequent to the step of not deleting the target control.
16. The method of Claim 15, wherein the step of communicating data between the target control and the server computer occurs prior to the step of receiving a command to create the target control.
17. A method of communicating between a client computer and a server computer connected to the client computer, wherein the client computer executes a browser program that receives at least one markup language document that at least partially defines a Web page from the server computer, the method comprising: receiving, from the server computer, the markup language document that at least partially defines a Web page and includes an instruction to create a software object; in response to receiving the markup language document, creating the software object; communicating data between the software object and the server computer; exiting the Web page subsequent to the step of communicating data between the software object and the server computer; and communicating additional data between the software object and the server computer subsequent to the step of exiting the Web page.
18. The method of Claim 17, wherein the software object has an associated object window, further comprising: displaying the object window within the Web page during the step of communicating the first data between the software object and the server computer; and not displaying the object window during the step of communicating the additional data between the software object and the server computer.
19. The method of Claim 18, further comprising: revisiting the Web page subsequent to the step of communicating the additional data between the software object and the server computer; and redisplaying the object window within the Web page subsequent to the step of communicating the additional data between the software object and the server computer.
20. The method of Claim 19, further comprising: displaying the additional data communicated between the software object and the server computer within the object window subsequent to the step of redisplaying the object window.
PCT/US1997/016459 1997-02-18 1997-09-16 Method for preserving the state of a control during the lifetime of its container WO1998036352A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU44834/97A AU4483497A (en) 1997-02-18 1997-09-16 Method for preserving the state of a control during the lifetime of its container

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/800,545 US5835914A (en) 1997-02-18 1997-02-18 Method for preserving and reusing software objects associated with web pages
US08/800,545 1997-02-18

Publications (1)

Publication Number Publication Date
WO1998036352A1 true WO1998036352A1 (en) 1998-08-20

Family

ID=25178674

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1997/016459 WO1998036352A1 (en) 1997-02-18 1997-09-16 Method for preserving the state of a control during the lifetime of its container

Country Status (3)

Country Link
US (1) US5835914A (en)
AU (1) AU4483497A (en)
WO (1) WO1998036352A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1732000A2 (en) 2005-06-07 2006-12-13 Rockwell Automation Technologies, Inc. Enhanced speed interface method and system

Families Citing this family (106)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
ES2142564T3 (en) * 1996-08-20 2000-04-16 Cit Alcatel PROCEDURE FOR ADMINISTERING THE SPECIFICATION OF OBJECTS.
US6782427B1 (en) * 1997-04-02 2004-08-24 Allegro Software Development Corporation Serving data from a resource limited system
US6314456B1 (en) * 1997-04-02 2001-11-06 Allegro Software Development Corporation Serving data from a resource limited system
US5987580A (en) * 1997-04-04 1999-11-16 Oracle Corporation Serially reusable execution memory
US6266681B1 (en) * 1997-04-08 2001-07-24 Network Commerce Inc. Method and system for inserting code to conditionally incorporate a user interface component in an HTML document
US7167857B2 (en) 1997-04-15 2007-01-23 Gracenote, Inc. Method and system for finding approximate matches in database
US7308485B2 (en) 1997-04-15 2007-12-11 Gracenote, Inc. Method and system for accessing web pages based on playback of recordings
US6571290B2 (en) 1997-06-19 2003-05-27 Mymail, Inc. Method and apparatus for providing fungible intercourse over a network
US8516132B2 (en) 1997-06-19 2013-08-20 Mymail, Ltd. Method of accessing a selected network
US6963589B1 (en) * 1997-07-03 2005-11-08 Canon Kabushiki Kaisha Information processing apparatus for and method of transmitting and/or receiving broadcast signal
US6078321A (en) * 1997-09-30 2000-06-20 The United States Of America As Represented By The Secretary Of The Navy Universal client device for interconnecting and operating any two computers
US6253234B1 (en) 1997-10-17 2001-06-26 International Business Machines Corporation Shared web page caching at browsers for an intranet
GB2319641B (en) * 1997-11-28 1998-10-14 Ibm Secure variable storage for internet applications
US6101328A (en) * 1997-12-31 2000-08-08 Intel Corporation System for preventing multiple instances of the same dynamic executable module
US6065012A (en) * 1998-02-27 2000-05-16 Microsoft Corporation System and method for displaying and manipulating user-relevant data
US6834388B1 (en) 1998-03-13 2004-12-21 Iconics, Inc. Process control
US6330575B1 (en) * 1998-03-31 2001-12-11 International Business Machines Corporation Web commerce tool kit for distributed payment processing
US6138127A (en) * 1998-05-19 2000-10-24 International Business Machines Corporation Apparatus and method for recycling an object
US6611954B1 (en) * 1998-06-03 2003-08-26 Intel Corporation Binary compatible software objects
WO1999066692A1 (en) 1998-06-19 1999-12-23 Netsafe, Inc. Method and apparatus for providing connections over a network
JP2000035933A (en) * 1998-07-16 2000-02-02 Fujitsu Ltd File management method, file display method and storage medium
US6638315B2 (en) * 1998-09-21 2003-10-28 Wall Data Incorporated Method for preserving the state of a java applet during the lifetime of its container
CZ20011336A3 (en) 1998-10-16 2002-01-16 Iconics, Inc. Control of processes
AU1239400A (en) 1998-10-28 2000-05-15 Yahoo! Inc. A method of controlling an internet browser interface and a controllable browserinterface
US6292936B1 (en) * 1998-11-12 2001-09-18 International Business Machines Corporation Enabling multiple runtime processors in an interpreter-based embedded scripting system
US6605120B1 (en) * 1998-12-10 2003-08-12 International Business Machines Corporation Filter definition for distribution mechanism for filtering, formatting and reuse of web based content
US6845483B1 (en) 1998-12-15 2005-01-18 International Business Machines Corporation System and method for generating electronic documents having independently formattable regions
US6889379B1 (en) * 1998-12-31 2005-05-03 Microsoft Corporation Transporting objects between a client and a server
US6981215B1 (en) * 1998-12-31 2005-12-27 Microsoft Corp. System for converting event-driven code into serially executed code
US6762777B2 (en) 1998-12-31 2004-07-13 International Business Machines Corporation System and method for associating popup windows with selective regions of a document
US7017116B2 (en) 1999-01-06 2006-03-21 Iconics, Inc. Graphical human-machine interface on a portable device
US6853623B2 (en) 1999-03-05 2005-02-08 Cisco Technology, Inc. Remote monitoring of switch network
US8479251B2 (en) * 1999-03-31 2013-07-02 Microsoft Corporation System and method for synchronizing streaming content with enhancing content using pre-announced triggers
US6553393B1 (en) * 1999-04-26 2003-04-22 International Business Machines Coporation Method for prefetching external resources to embedded objects in a markup language data stream
WO2000068824A1 (en) * 1999-05-10 2000-11-16 3Com Corporation Method and system for network management
US7139637B1 (en) 1999-05-11 2006-11-21 William Henry Waddington Order allocation to minimize container stops in a distribution center
US7177825B1 (en) 1999-05-11 2007-02-13 Borders Louis H Integrated system for ordering, fulfillment, and delivery of consumer products using a data network
WO2000068856A2 (en) 1999-05-11 2000-11-16 Webvan Group, Inc. Electronic commerce enabled delivery system and method
US7370005B1 (en) 1999-05-11 2008-05-06 Peter Ham Inventory replication based upon order fulfillment rates
US6975937B1 (en) 1999-05-11 2005-12-13 Christopher Kantarjiev Technique for processing customer service transactions at customer site using mobile computing device
US7197547B1 (en) 1999-05-11 2007-03-27 Andrew Karl Miller Load balancing technique implemented in a data network device utilizing a data cache
US6880126B1 (en) 1999-08-03 2005-04-12 International Business Machines Corporation Controlling presentation of a GUI, using view controllers created by an application mediator, by identifying a destination to access a target to retrieve data
US7200809B1 (en) 1999-08-04 2007-04-03 Oracle International Corporation Multi-device support for mobile applications using XML
US6460022B1 (en) * 1999-08-18 2002-10-01 Joel Fredric Plotkin Process for protecting sensitive price information from internet based data collection systems
US7359863B1 (en) 1999-09-30 2008-04-15 Computer Sciences Corporation Condition component framework for reinsurance
US7693731B1 (en) 1999-09-30 2010-04-06 Computer Sciences Corporation Business process framework for reinsurance
US6779177B1 (en) 1999-10-28 2004-08-17 International Business Machines Corporation Mechanism for cross channel multi-server multi-protocol multi-data model thin clients
US6862686B1 (en) 1999-10-29 2005-03-01 International Business Machines Corporation Method and apparatus in a data processing system for the separation of role-based permissions specification from its corresponding implementation of its semantic behavior
US7181686B1 (en) 1999-10-29 2007-02-20 International Business Machines Corporation Selecting screens in a GUI using events generated by a set of view controllers
US6654033B1 (en) 1999-12-07 2003-11-25 International Business Machines Corporation Finite state automation for emulation of activity sequenced engine
US6489971B1 (en) 1999-12-07 2002-12-03 International Business Machines Corporation Graphical programming environment for deterministic finite state automata
US6760842B1 (en) * 1999-12-07 2004-07-06 International Business Machines Corporation Finite state automata security system
US20020007369A1 (en) * 1999-12-17 2002-01-17 Thiagarajan Saravanan Network navigation
US7251612B1 (en) 2000-01-10 2007-07-31 Parker John E Method and system for scheduling distribution routes and timeslots
US7814157B2 (en) * 2000-01-11 2010-10-12 Eolas Technlogies, Inc. Hypermedia browser API simulation to enable use of browser plug-ins and applets as embedded widgets in script-language-based interactive programs
WO2001057663A2 (en) 2000-02-04 2001-08-09 America Online Incorporated Optimized delivery of web application code
WO2001057721A2 (en) 2000-02-04 2001-08-09 America Online Incorporated Dynamic web page generation
AU2001233141A1 (en) * 2000-02-04 2001-08-14 America Online Incorporated Methods and systems of automated client-server data validation
US6917961B2 (en) * 2000-03-30 2005-07-12 Kettera Software, Inc. Evolving interactive dialog box for an internet web page
US8621001B2 (en) 2000-03-30 2013-12-31 Ebay Inc. System and method for dynamically changing the content of an information display
US7139721B2 (en) 2000-05-10 2006-11-21 Borders Louis H Scheduling delivery of products via the internet
US7240283B1 (en) 2000-11-10 2007-07-03 Narasimha Rao Paila Data transmission and rendering techniques implemented over a client-server system
US6646658B1 (en) 2000-05-17 2003-11-11 Sharp Laboratories Of America, Inc. Tagging data files with application information
AU771770B2 (en) * 2000-06-14 2004-04-01 Sap Aktiengesellschaft Communication between client and server computers via HTTP, method, computer program product and system
US7343307B1 (en) 2000-06-23 2008-03-11 Computer Sciences Corporation Dynamic help method and system for an insurance claims processing system
US7398219B1 (en) 2000-06-23 2008-07-08 Computer Sciences Corporation System and method for displaying messages using a messages table
US7430514B1 (en) 2000-06-23 2008-09-30 Computer Sciences Corporation System and method for processing insurance claims using a table of contents
US7095426B1 (en) 2000-06-23 2006-08-22 Computer Sciences Corporation Graphical user interface with a hide/show feature for a reference system in an insurance claims processing system
US7418400B1 (en) 2000-06-23 2008-08-26 Computer Sciences Corporation Internet-enabled system and method for assessing damages
US7430515B1 (en) 2000-06-23 2008-09-30 Computer Sciences Corporation System and method for externalization of formulas for assessing damages
US7571107B1 (en) 2000-06-23 2009-08-04 Computer Sciences Corporation System and method for externalization of rules for assessing damages
US7373422B1 (en) 2000-08-04 2008-05-13 Oracle International Corporation Techniques for supporting multiple devices in mobile applications
US7013329B1 (en) * 2000-08-04 2006-03-14 Oracle International Corporation Techniques for programming event-driven transactions in mobile applications
US8631092B2 (en) * 2000-08-24 2014-01-14 Red Hat, Inc. Embedded protocol objects
US7366896B1 (en) * 2000-08-29 2008-04-29 Microsoft Corporation Systems and methods for limiting access to potentially dangerous code
US7577903B1 (en) * 2000-11-01 2009-08-18 Ncr Corporation Defining a process by a plurality of pages defined in a mark-up language
AU2002230771A1 (en) * 2000-12-07 2002-06-18 Webputty Automatically deploy and upgrade an application based on markup language application definition
US7233914B1 (en) 2000-12-27 2007-06-19 Joyo Wijaya Technique for implementing item substitution for unavailable items relating to a customer order
US7308423B1 (en) 2001-03-19 2007-12-11 Franklin Goodhue Woodward Technique for handling sales of regulated items implemented over a data network
GB2381340A (en) * 2001-10-27 2003-04-30 Hewlett Packard Co Document generation in a distributed information network
US7640491B2 (en) * 2001-12-05 2009-12-29 Microsoft Corporation Outputting dynamic local content on mobile devices
US6976244B2 (en) * 2002-01-09 2005-12-13 International Business Machines Corporation Method, system, and product for storage of attribute data in an object oriented environment
US7447991B2 (en) * 2002-04-01 2008-11-04 Hewlett-Packard Development Company, L.P. Document agents
US7689442B2 (en) 2002-10-31 2010-03-30 Computer Science Corporation Method of generating a graphical display of a business rule with a translation
US7676387B2 (en) * 2002-10-31 2010-03-09 Computer Sciences Corporation Graphical display of business rules
US7451148B2 (en) 2002-10-31 2008-11-11 Computer Sciences Corporation Method of modifying a business rule while tracking the modifications
US20040088199A1 (en) * 2002-10-31 2004-05-06 Childress Allen B. Method of forming a business rule
US20040085357A1 (en) * 2002-10-31 2004-05-06 Childress Allen B. Method of generating a graphical display of a business rule and associated business rule elements
US7895064B2 (en) 2003-09-02 2011-02-22 Computer Sciences Corporation Graphical input display in an insurance processing system
US8069416B2 (en) * 2004-05-14 2011-11-29 International Business Machines Corporation Learning computer-generated screens based on user key selections
US8316446B1 (en) * 2005-04-22 2012-11-20 Blue Coat Systems, Inc. Methods and apparatus for blocking unwanted software downloads
US7735059B2 (en) * 2005-06-09 2010-06-08 Microsoft Corporation Winforms control hosting in unmanaged applications
US20070016829A1 (en) * 2005-07-14 2007-01-18 Microsoft Corporation Test case generator
EP1934828A4 (en) * 2005-08-19 2008-10-08 Gracenote Inc Method and system to control operation of a playback device
US20070078963A1 (en) * 2005-10-05 2007-04-05 Woodard Scott E Method of remote management of the look and functionality of a website by a third party service provider with the aid of scripting technology
US20070162848A1 (en) * 2006-01-09 2007-07-12 Apple Computer, Inc. Predictive styling
US7908273B2 (en) 2006-03-09 2011-03-15 Gracenote, Inc. Method and system for media navigation
US20080127173A1 (en) * 2006-10-18 2008-05-29 Thomas Tripp Systems and methods for performing computer diagnostics
EP1916628B1 (en) * 2006-10-27 2014-11-19 Deutsche Post AG Method for creating an intelligent document and device for carrying out the method
EP1916620A1 (en) * 2006-10-27 2008-04-30 Deutsche Post AG Method for creating a label and device for carrying out the method
US8000986B2 (en) 2007-06-04 2011-08-16 Computer Sciences Corporation Claims processing hierarchy for designee
US8010390B2 (en) 2007-06-04 2011-08-30 Computer Sciences Corporation Claims processing of information requirements
US8010391B2 (en) 2007-06-29 2011-08-30 Computer Sciences Corporation Claims processing hierarchy for insured
US8010389B2 (en) * 2007-06-04 2011-08-30 Computer Sciences Corporation Multiple policy claims processing
US8244558B2 (en) 2008-01-18 2012-08-14 Computer Sciences Corporation Determining recommended settlement amounts by adjusting values derived from matching similar claims
US10228917B2 (en) * 2017-05-11 2019-03-12 International Business Machines Corporation Mapping of software code via user interface summarization

Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO1991002307A1 (en) * 1989-07-31 1991-02-21 Hewlett Packard Company Object based computer system
WO1997000475A1 (en) * 1995-06-14 1997-01-03 Novell, Inc. Method for managing globally distributed software components

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5740440A (en) * 1995-01-06 1998-04-14 Objective Software Technology Dynamic object visualization and browsing system
US5761499A (en) * 1995-12-21 1998-06-02 Novell, Inc. Method for managing globally distributed software components
US5751956A (en) * 1996-02-21 1998-05-12 Infoseek Corporation Method and apparatus for redirection of server external hyper-link references
US5706502A (en) * 1996-03-25 1998-01-06 Sun Microsystems, Inc. Internet-enabled portfolio manager system and method
US5715453A (en) * 1996-05-31 1998-02-03 International Business Machines Corporation Web server mechanism for processing function calls for dynamic data queries in a web page
US5742768A (en) * 1996-07-16 1998-04-21 Silicon Graphics, Inc. System and method for providing and displaying a web page having an embedded menu

Patent Citations (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO1991002307A1 (en) * 1989-07-31 1991-02-21 Hewlett Packard Company Object based computer system
WO1997000475A1 (en) * 1995-06-14 1997-01-03 Novell, Inc. Method for managing globally distributed software components

Non-Patent Citations (2)

* Cited by examiner, † Cited by third party
Title
BROWN M H ET AL: "Distributed active objects", COMPUTER NETWORKS AND ISDN SYSTEMS, vol. 28, no. 11, May 1996 (1996-05-01), pages 1037-1052, XP004018206 *
SHAPIRO M: "A BINDING PROTOCOL FOR DISTRIBUTED SHARED OBJECTS", 21 June 1994, PROCEEDINGS OF THE INTERNATIONAL CONFERENCE ON DISTRIBUTED COMPUTIN SYSTEMS, POZNAN, POLAND, JUNE 21 - 24, 1994, NR. CONF. 14, PAGE(S) 134 - 141, INSTITUTE OF ELECTRICAL AND ELECTRONICS ENGINEERS, XP000489077 *

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
EP1732000A2 (en) 2005-06-07 2006-12-13 Rockwell Automation Technologies, Inc. Enhanced speed interface method and system
EP1732000A3 (en) * 2005-06-07 2010-01-06 Rockwell Automation Technologies, Inc. Enhanced speed interface method and system

Also Published As

Publication number Publication date
US5835914A (en) 1998-11-10
AU4483497A (en) 1998-09-08

Similar Documents

Publication Publication Date Title
US5835914A (en) Method for preserving and reusing software objects associated with web pages
US6101510A (en) Web browser control for incorporating web browser functionality into application programs
US6182129B1 (en) Apparatus, methods and computer program products for managing sessions with host-based application using session vectors
US6701368B1 (en) Providing a stream of data to a browser to update properties on a page
US7370287B2 (en) Dynamic controls for use in computing applications
US6003047A (en) Non-hierarchical application interface for HTML-based network storage management programs
US5922044A (en) System and method for providing information to applets in a virtual machine
US5848424A (en) Data navigator interface with navigation as a function of draggable elements and drop targets
EP0972386B1 (en) Method and apparatus for updating and synchronizing information between a client and a server
US6757868B1 (en) Programmatic switching of arbitrary HTML forms
US7676762B2 (en) Method of controlling an Internet browser interface and a controllable browser interface
US7555706B2 (en) Human machine interface
US6697848B2 (en) Method and apparatus for enabling application programs to communicate with network clients and servers
US5742768A (en) System and method for providing and displaying a web page having an embedded menu
US6978445B2 (en) Method and system for supporting user navigation in a browser environment
US6638315B2 (en) Method for preserving the state of a java applet during the lifetime of its container
EP2315114A1 (en) Methods for user interface generation and application modification
US20020091732A1 (en) Displaying forms and content in a browser
US20020089536A1 (en) Method and apparatus for an applet to display multiple windows
WO2006124215A2 (en) System and method for generating and updating user interfaces of web-based applications
US7197712B2 (en) Server visualization and control
US6971108B1 (en) Computer software framework and method for managing communication flow between a user interface and a computer application
US20020188703A1 (en) Graphical tool for developing computer programs via specifications
US20070028246A1 (en) State-machine driven web server and related methods
EP0912931A2 (en) Program modules and parameter files in a network

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AL AM AT AU AZ BA BB BG BR BY CA CH CN CU CZ DE DK EE ES FI GB GE GH HU IL IS JP KE KG KP KR KZ LC LK LR LS LT LU LV MD MG MK MN MW MX NO NZ PL PT RO RU SD SE SG SI SK SL TJ TM TR TT UA UG UZ VN YU ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): GH KE LS MW SD SZ UG ZW AM AZ BY KG KZ MD RU TJ TM AT BE CH DE DK ES FI FR GB GR IE IT LU MC NL PT SE BF BJ CF CG CI CM GA GN ML MR NE SN TD TG

DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
121 Ep: the epo has been informed by wipo that ep was designated in this application
REG Reference to national code

Ref country code: DE

Ref legal event code: 8642

NENP Non-entry into the national phase

Ref country code: JP

Ref document number: 1998535703

Format of ref document f/p: F

122 Ep: pct application non-entry in european phase