The invention relates generally to a web server framework, and more particularly to managing the state of server-side control objects that process client-side user interface elements of a web page.
A typical web browser receives data from a web server that defines the appearance and rudimentary behavior of a web page for display on a client system. In a typical scenario, a user specifies a Uniform Resource Locator (“URL”), which is a global address of a resource on the World Wide Web, to access a desired web site. Generally, the term “resource” refers to data or routines that can be accessed by a program. An example URL is “http://www.microsoft.com/ms.htm”. The first part of the example URL indicates a given protocol (i.e., “http”) to be used in the communication. The second part specifies the domain name (i.e., “www.microsoft.com”) where the resource is located. The third part specifies the resource (i.e., a file called “ms.htm”) within the domain. Accordingly, a browser generates an HTTP (HyperText Transport Protocol) request associated with the example URL to retrieve the data associated with ms.htm file within the www.microsoft.com domain. A web server hosting the www.microsoft.com site receives the HTTP request and returns the requested web page or resource in an HTTP response to the client system for display in the browser.
The “ms.htm” file of the example above includes static HTML (HyperText Markup Language) code. HTML is a plain-text authoring language used to create documents (e.g., web pages) on the World Wide Web. As such, an HTML file can be retrieved from a web server and displayed as a web page in a browser. Using HTML, a developer can, for example, specify formatted text, lists, forms, tables, hypertext links, inline images and sounds, and background graphics for display in the browser to present the rich graphical experience that users have come to expect while viewing information from the Internet. An HTML file, however, is a static file that does not inherently support dynamic generation of web page content.
If dynamic content is to be displayed, such as a change stock price or traffic information, a server-side application program is generally developed to handle the more complex client-server interaction. The server-side application program processes an HTTP request and generates the appropriate HTML code for transmission to the client in an HTTP response. An exemplary HTTP request may include parameters, such as data in a query string or data from web-based forms. As such, a server-side application program can process the parameters and dynamically generate HTML code in an HTTP response to the client. An exemplary server-side application program may dynamically generate documents containing appropriate HTML code using a sequence of one or more formatted text write operations to a memory structure. Thereafter, the resulting document is transmitted to a client system in an HTTP response, where it is displayed as a web page in the browser.
Developing a server-side application program can be a complex task requiring not only familiarity with normal HTML coding that is used to layout a web page, but also with programming basics, including one or more programming languages, (e.g., C++, Perl, Visual Basic, or Jscript). Web page designers, on the other hand, are frequently graphics designers and editors, who may lack programming experience. Furthermore, simplifying complex web page development can speed the development of new web content by any developer. Generally, development of a custom server-side application program also requires tremendous effort, so much, in fact, that developers are often disinclined to attempt it. It is desirable, therefore, to provide a development framework that allows a developer to dynamically create and process a web page with minimal programming.
One approach to minimize the programming requirements of dynamic web page generation has been the Active Server Page (ASP) framework, provided by Microsoft Corporation. An ASP resource typically includes Visual Basic or Jscript code, for example, to process an HTTP request that specifies the ASP resource as the desired resource and, thereafter, to generate the resulting HTML code in a HTTP response to the client. Furthermore, an ASP resource may reference pre-developed or third party client-side library components (e.g., client-side “ACTIVEX” controls) instead of requiring that the page developer write all components from scratch. However, in the current server-side application frameworks, the programming required to dynamically manage client-side user interface elements (e.g., text boxes, list boxes, buttons, hypertext links, images, sounds, etc.) within server-side applications can still require sophisticated programming skills and considerable effort. An unanswered problem exists in property encapsulating programming required to process user interface elements, so as to allow the web page developer to focus on other aspects of the web page.
Server-side processing of client-side user interface elements, however, may involve complex state management issues, which would typically fall to the server-side applications program. The state of a server-side processing module corresponding to the client-side user interface element represents the server-side module's properties and configuration. A stateless client/server model, however, dictates that in communications between client and server the server does not maintain the state of processes occurring between the client and the server, because the communications connection between the client and server may disappear unexpectedly.
In accordance with the present invention, the above and other problems are solved by providing encapsulated state management for server-side processing of client-side user interface elements in which the server does not maintain the state between requests. The operation of processing the client-side user interface element may include a state management operation, which relates to the state (i.e., the “viewstate”) of one or more server-side control objects in a control object hierarchy. A server-side control object processes and generates a client-side user interface element for display on a web page. A hierarchy of server-side control objects may also cooperate to generate the resulting authoring language code, such as standard HTML, for display of a web page on a client. The client can be, for example, any browser that supports standard HTML or another authoring language.
To satisfy the stateless client/server model, state information of server-side control objects may be transported between the client and the server in a transportable state structure, rather than remaining on the server between HTTP requests. When the server receives an HTTP request from the client, the server extracts the state information from a transportable state structure from the HTTP request and distributes the state information to the appropriate individual control objects in the server-side hierarchy. The integrity of the transportable state structure may also be verified using a coded structure associated with the transportable state structure and generated from the state information.
A method for managing a state of a server-side control object corresponding to a client-side user interface element incorporated in a web page displayed on a client is provided. The server-side control object is created in the control object hierarchy to process the client-side user interface element. A transportable state structure is received from the client. The transportable state structure includes state information indicating a state value for at least one server-side control object in the control object hierarchy. The state information is extracted from the transportable state structure. The state value from the state information is loaded into property of the server-side control object, if the state value is associated with the server-side control object.
A computer program product for managing a state of a plurality of server-side control objects created in a control object hierarchy and corresponding to a plurality of client-side user interface elements incorporated in a web page displayed on a client is provided. A transportable state structure is received from the client includes state information associated with one or more server-side control objects in the control object hierarchy. The state information is serialized to extract a state value, an associated property data type, and hierarchical information for a property of a server-side control object. The server-side control object is located within the control object hierarchy based on the hierarchical information. The state value is loaded into the property of the server-side control object.
An article of manufacture is provided as a computer program product. An embodiment of a computer program product in accordance with the present invention includes a computer program storage medium readable by a computer system and encoding a computer program for executing a computer process managing a state of a server-side control object corresponding to a client-side user interface element incorporated in a web page displayed on a client. An alternative embodiment of a computer program product in accordance with the present invention includes a computer data signal embodied in a carrier wave by a computing system and encoding a computer program managing a state of a server-side control object corresponding to a client-side user interface element incorporated in a web page displayed on a client. A product generated by a process of the present invention is provided as authoring language code, containing a transportable state structure, transmitted to a client and interpreted by a browser on the client.
In an embodiment of the present invention, web page content is dynamically generated on a web server for display on a client. The client and the web server communicate across a network, for example, using HTTP requests and HTTP responses. As such, the web server generates web page content, which may be in the form of HTML code, and transmits the content to the client, which can display the web page in a browser. Server-side control objects, which logically correspond to individual user interface elements of the web page, are created on the web server to process and generate the web page content to be used by a client-side browser to display and process a web page. The server-side control objects are declared in a dynamic content file, such as an ASP+ resource, which is processed by a page factory to create a hierarchy of server-side control objects. The control objects in the hierarchy cooperate to process the request received from the client and then generate resulting web page content for transmission to the client, before the control objects in the hierarchy are terminated.
A page object may be instantiated as the top level of the control object hierarchy in an embodiment of the present invention. A page object, which is also a control object, typically contains one or more child control objects, and each child control object can contain one or more child control objects of its own to extend into a hierarchy of multiple levels. The page objects and descendent control objects execute a sequence of operations to process and generate the web content that corresponds to client-side user interface elements.
One of the operations in this sequence includes a load operation that deserializes the state information, which is received in a transportable state structure included in the request from the client, into the appropriate control object or objects in the hierarchy. A traversal operation of this load operation may walk through the control object hierarchy, following hierarchical information in the transportable state structure, to locate appropriate control objects in the hierarchy. In an embodiment of the present invention, the received state information includes only the states of control objects that have changed from their initial states (i.e., the state information includes only differential data). Alternative embodiments may include all states of all control objects in the hierarchy, whether changed or not, or some other combination of state information and hierarchical information for one or more server-side control objects.
Another operation of the sequence includes a save operation that serializes the state information from control objects having changed states. The state information is added to a transportable state structure for transmission to the client. The client may return the transportable state structure to the web server on a subsequent request to the web server. Upon receipt of the transportable state structure, the control object hierarchy is recreated and the load operation restores the hierarchy's state to that of the previous response.
In an alternative embodiment, the transportable state structure may not be transmitted to the client. Instead, the transportable state structure may remain in the server or be transferred to another resource location (e.g., another server). For example, in the case of load balancing, a first server may communicate with a browser in a first HTTP transaction, but a second server may communicate with the browser in a second HTTP transaction. Accordingly, the transportable state structure can be communicated from the first server to the second server to process the second HTTP transaction, thereby bypassing the client.
The communications between the client 100 and the web server 116 may be conducted using a sequence of HTTP requests 114 and HTTP responses 112. Although HTTP is described with reference to one embodiment, other transport protocols, including without limitation S-HTTP, are contemplated within the scope of the present invention. On the web server 116, an HTTP pipeline module 118 receives an HTTP request 114, resolves the URL, and invokes an appropriate handler 120 for processing the request. In an embodiment of the present invention, a plurality of handlers 120 for handling different types of resources is provided on the web server 116.
For example, if the URL specifies a static content file 122, such as an HTML file, a handler 120 accesses the static content file 122 and passes the static content file 122 back through the HTTP pipeline 118 for communication to the client 100 in an HTTP response 112. Alternatively, in an embodiment of the present invention, if the URL specifies a dynamic content file 124, such as an ASP+ resource, a handler 120 accesses the dynamic content file 124, processes the contents of the dynamic content file 124, and generates the resulting HTML code for the web page 104. In an embodiment of the present invention, the resulting HTML code includes standard HTML 3.2 code. Generally, a dynamic content file is a server-side declaration datastore (e.g., an ASP+ resource) that can be used to dynamically generate the authoring language code that describes a web page to be displayed on a client. The HTML code for the web page is then passed through the HTTP pipeline 118 for communication to the client 100 in an HTTP response 112.
During its processing, a handler 120 can also access libraries of pre-developed or third party code to simplify the development effort. One such library is a server-side class control library 126, from which the handler 120 can instantiate server-side control objects for processing user interface elements and generating the resultant HTML data for display of a web page. In an embodiment of the present invention, one or more server-side control objects map to one or more user interface elements, visible or hidden, on the web page described in the dynamic content file 124. More details on server-side control objects for processing client-side server interface elements are described in U.S. patent application Ser. No. 09/573,769 entitled SERVER-SIDE CONTROL OBJECTS FOR PROCESSING CLIENT-SIDE USER INTERFACE ELEMENTS, incorporated herein by reference for all it discloses and teaches, filed concurrently herewith, and assigned to the Assignee of the present invention.
A second library, in contrast, is a client-side control class library 128, such as a library including “ACTIVEX” components from Microsoft Corporation. An “ACTIVEX” control is a COM (“Component Object Model”) object that follows certain standards in how it interacts with its client and other components. A client-side “ACTIVEX” control, for example, is a COM-based component that can be automatically downloaded to a client and executed by a web browser on the client. Server-side ACTIVEX components (not shown) are COM-based components that may be implemented on a server to perform a variety of server-side functions, such as providing the server-side functionality of a stock price look-up application or database component. A more detailed discussion of ACTIVEX can be found in “Understanding ACTIVEX and OLE”, David Chappell, Microsoft Press, 1996.
In contrast to “ACTIVEX” controls, a server-side control object in an embodiment of the present invention, being specified in a dynamic content resource 124, logically corresponds to a user interface element that is incorporated in the web page on the client. The server-side control object can also generate valid HTML code that can include, for example, an HTML tag and a locator referencing a given client-side “ACTIVEX” control. If the browser already has the code for the client-side “ACTIVEX” control within its storage system, the browser executes the “ACTIVEX” control within the web page on the client. Otherwise, the browser downloads the code for the “ACTIVEX” control from the resource specified by the locator and then executes the “ACTIVEX” control within the web page on the client. A server-side control object in an embodiment of the present invention can also raise events to a server-side “ACTIVEX” control used to implement a stock look-up application on the server.
A handler 120 also has access to one or more non-user-interface server components 130 that execute on the web server 116 or on another accessible web server. A non-user-interface server component 130, such as a stock price look-up application or database component, may be referenced in or associated with a dynamic content file 124 that is processed by a handler 120. Sever-side events raised by the control objects declared in the dynamic content file 124 may be processed by server-side code, which calls appropriate methods of the non-user-interface server component 130. As a result, the processing provided by the server-side control objects simplifies the programming of the non-user-interface server component 130 by encapsulating the processing and generation of the user interface elements of a web page, which allows the developer of the non-user-interface server component 130 to concentrate on the specific functionality of the application, rather than on user interface issues.
In operation 206, the server-side control objects of the control object hierarchy perform one or more of the following operations: Postback event handling, postback data handling, state management, and data binding. Postback events and data (collectively “postback input”) from user interface elements are communicated from the client to the server for processing. A postback event, for example, may include without limitation a “mouse click” event from a client-side button element or a “data change” event from a client-side textbox element that is communicated to the server. Postback data, for example, may include without limitation text entered by a user in a text box element or an index of an item selected from a drop-down box.
Operation 209 saves the property values, associated type information, and hierarchical information into a transportable state structure for transmission to the client. In operation 208, each server-side control object in the hierarchy is called to generate (or render) authoring language data, such as HTML code, for display of client-side user interface elements in the web page. Note that, although the term “render” may be used to describe the operation of displaying graphics on a user interface, the “render” is also used herein to describe the operation of generating authoring language data that can be interpreted by a client application, such as a browser, for display and client-side functionality. Rendering operation 208 also generates the authoring language data representing the transportable state structure. A more detailed discussion of the processing operation 206 and the rendering operation 208 is provided in association with
In an embodiment of the present invention, the actual creation of the individual server-side control objects may be deferred until the server-side control object is accessed (such as when handling postback input, loading a state, rendering HTML code from the control object, etc.) in operations 206 or 208. If a server-side control object is never accessed for a given request, deferred control object creation optimizes server processing by eliminating an unnecessary object creation operation. More details on deferred control object creation and postback input handling are described in U.S. patent application Ser. No. 09/574,165, entitled POSTBACK HANDLING BY SERVER-SIDE CONTROL OBJECTS, presently awaiting the issuance of Letters Patent, incorporated herein by reference for all that it discloses and teaches, filed concurrently herewith, and assigned to the Assignee of the present application.
Operation 210 transmits the authoring language data (e.g., HTML code), including the transportable state structure, to the client in an HTTP response. In operation 214, the client receives the HTML code, including the transportable state structure, associated with the web page to be displayed. The transportable state structure may be stored at the client for return to the server in a subsequent HTTP request. In operation 216, the client system incorporates (e.g., displays) the user interface elements of the new page in accordance with the HTML code received from the HTTP response. It should be understood, however, that incorporation of a user-interface element may include non-display operations, such as providing audio or tactile output, reading and writing to memory, controlling the operation of scripts, etc. In operation 212, the server-side control object hierarchy is terminated. In an embodiment of the present invention, server-side control objects in the hierarchy are created in response to an HTTP request referencing an associated ASP+ resource, and destroyed subsequent to the rendering of authoring language data (e.g., HTML data). In an alternative embodiment, operation 212 may be performed after operation 208 and before operation 210.
In
After reading the ASP+ resource 310 into memory, the page factory module 308 processes the file content to build a data model of the page (e.g., lists of script blocks, directives, static text regions, hierarchical server-side control objects, server-side control properties, etc.). The data model is used to generate a source listing of a new object class, such as a COM+ (“Component Object Model+”) class that extends the page base class. The page base class includes code that defines the structure, properties, and functionality of a basic page object. The source listing is then dynamically compiled into an intermediate language. An intermediate language may include general or custom-built language code, such as COM+ IL code, Java bytecodes, Modula 3 code, SmallTalk code, and Visual Basic code. In an alternative embodiment, the intermediate language operations may be omitted, so that the native instructions are generated directly from the source listing or the source file (e.g., the ASP+ resource 310). A control class library 312 may be accessed by the page factory module 308 to obtain predefined server-side control classes used in the generation of the control object hierarchy.
The page factory module 308 outputs a page object 314, which is a server-side control object that corresponds to the web page 104 of
In the illustrated embodiment, the control objects in the control object hierarchy 316 are created and executed on the server 3000, and each server-side control object “mirrors” a corresponding user interface element on the client. The server-side control objects of this embodiment also cooperate to handle input from the HTTP request 302, to manage the states of server-side control objects, to perform data binding with server-side databases, and to generate authoring language data (e.g., HTML code) used to display a resulting web page at a client. The resulting authoring language data is generated (i.e., rendered) from the server-side control object hierarchy 316 and transmitted to the client in an HTTP response 324. For example, resulting HTML code may embody any valid HTML construct and may reference ACTIVEX-type controls, JAVA applets, scripts, and any other web resources that yield client-side user interface elements (e.g., control buttons, text boxes, etc.) when processed by a browser.
By virtue of declarations made in the ASP+ resource 310, server-side control objects may access one or more non-user-interface server components 330 to provide interaction between the non-user-interface server component 330 and client-side user interface elements. For example, in response to postback input, server-side control objects can raise server-side events to the non-user-interface server components registered for those events. In this manner the non-user-interface server component 330 can interact with the user through user interface elements without programming the code required to display and process these elements.
In summary, an embodiment of the present invention includes server-side control objects that are created and executed on the server to generate HTML code that is sent to a client. The HTML code may, for example, embody any valid HTML constructs and may reference ACTIVEX-type controls, JAVA applets, scripts and any other web resources to produce user interface buttons and other user interface elements at the client. A user at the client may interact with these user interface elements, which logically correspond to the server-side control objects, and send a request back to the server. The server-side control objects are recreated on the server to process the data, events, and other characteristics of the user interface elements so as to generate the next round of HTML code to be transmitted in a response to the client.
With reference to
The computer system 400 further includes a hard disk drive 412 for reading from and writing to a hard disk, a magnetic disk drive 414 for reading from or writing to a removable magnetic disk 416, and an optical disk drive 418 for reading from or writing to a removable optical disk 419 such as a CD ROM, DVD, or other optical media. The hard disk drive 412, magnetic disk drive 414, and optical disk drive 418 are connected to the system bus 406 by a hard disk drive interface 420, a magnetic disk drive interface 422, and an optical drive interface 424, respectively. The drives and their associated computer-readable media provide nonvolatile storage of computer readable instructions, data structures, programs, and other data for the computer system 400.
Although the exemplary environment described herein employs a hard disk, a removable magnetic disk 416, and a removable optical disk 419, other types of computer-readable media capable of storing data can be used in the exemplary system. Examples of these other types of computer-readable mediums that can be used in the exemplary operating environment include magnetic cassettes, flash memory cards, digital video disks, Bernoulli cartridges, random access memories (RAMs), and read only memories (ROMs).
A number of program modules may be stored on the hard disk, magnetic disk 416, optical disk 419, ROM 408 or RAM 410, including an operating system 426, one or more application programs 428, other program modules 430, and program data 432. A user may enter commands and information into the computer system 400 through input devices such as a keyboard 434 and mouse 436 or other pointing device. Examples of other input devices may include a microphone, joystick, game pad, satellite dish, and scanner. These and other input devices are often connected to the processing unit 402 through a serial port interface 440 that is coupled to the system bus 406. Nevertheless, these input devices also may be connected by other interfaces, such as a parallel port, game port, or a universal serial bus (USB). A monitor 442 or other type of display device is also connected to the system bus 406 via an interface, such as a video adapter 444. In addition to the monitor 442, computer systems typically include other peripheral output devices (not shown), such as speakers and printers.
The computer system 400 may operate in a networked environment using logical connections to one or more remote computers, such as a remote computer 446. The remote computer 446 may be a computer system, a server, a router, a network PC, a peer device or other common network node, and typically includes many or all of the elements described above relative to the computer system 400. The network connections include a local area network (LAN) 448 and a wide area network (WAN) 450. Such networking environments are commonplace in offices, enterprise-wide computer networks, intranets, and the Internet.
When used in a LAN networking environment, the computer system 400 is connected to the local network 448 through a network interface or adapter 452. When used in a WAN networking environment, the computer system 400 typically includes a modem 454 or other means for establishing communications over the wide area network 450, such as the Internet. The modem 454, which may be internal or external, is connected to the system bus 406 via the serial port interface 440. In a networked environment, program modules depicted relative to the computer system 400, or portions thereof, may be stored in the remote memory storage device. It will be appreciated that the network connections shown are exemplary, and other means of establishing a communication link between the computers may be used.
In an embodiment of the present invention, the computer 400 represents a web server, wherein the cpu 402 executes a page factory module on an ASP+ resource stored on at least one of storage media 416, 412, 414, 418, 419, or memory 404. HTTP responses and requests are communicated over the LAN 448 that is coupled to a client computer 446.
In an alternate embodiment, however, creation of child control objects is deferred until the control object is required for a given processing step (e.g., handling a postback event, handling postback data, loading or saving a viewstate, resolving data binding, or rendering HTML code for the corresponding user interface element). The latter embodiment, which is said to implement, “deferred control object creation”, is an optimization that can alleviate unnecessary CPU and memory utilization. For example, a user input event received from the client may result in the creation of a completely different web page. In this case, it is unnecessary to instantiate an entire control object hierarchy of the previous page only to process an event that immediately results in the termination of the control object hierarchy and the instantiation of a new and different control object hierarchy for a new page.
In response to the server call to the page object's ProcessRequest method, operations 504 through 520 may be executed by the page object and by individual descendant control objects, depending in part on the data of a given HTTP request. In an embodiment of the present invention, the operations 504–520 are performed for each individual object in the order illustrated in
The Init operation 504 initializes a control object after it is created by executing any server-side code associated with initialization in the dynamic content file. In this manner, each server-side control object may be customized with specific server-side functionality that is declared in the dynamic content file. In an embodiment of the present invention, dynamic content code intended to customize or extend the base page control classes as declared by the page developer in the ASP+ resource on the server. When the ASP+ resource is compiled, the declared code is included in the appropriate initialization code (e.g., the Init( ) methods of the page object and the descendent control objects). The Init operation 504 executes this code to customize or extend the page base class and the base classes for descendent control objects.
In an embodiment of the present invention, state management of the server-side control objects is supported in a Load operation 506 and a Save operation 516, which use a transportable state structure to accommodate the stateless model for client server systems by restoring server-side control objects to their previous states. In one embodiment, the state is communicated to and from the server in one or more hidden HTML fields of an HTTP request/response pair, although other transportable state structures are contemplated within the scope of the present invention, including cookies and visible fields.
In a given sequence of requests and responses relating to the current page between a client and a server, the states of one or more control objects are recorded into a transportable state structure by the Save operation 516 after the processing of a previous request. In an embodiment of the present invention, additional state information is also included in the transportable state structure, including hierarchical information or control object identifiers to allow the server to associate a given state with the appropriate control object. In a subsequent HTTP request, the state information is returned to the server in the transportable state structure. The server extracts the state information from the received transportable state structure and loads the state data into the appropriate control objects within the control object hierarchy to restore each control object to its state as it existed prior to a previous HTTP response. After the current request is processed, the states of one or more server-side control objects are again recorded into the transportable state structure by the Save operation 516, and the transportable state structure is returned to the client in the next HTTP response.
As a result of the Load operation 506, each server-side control object is placed in a state consistent with its state prior to a previous HTTP response. For example, if a text box control object includes a property value equaling “JDoe” prior to a previous HTTP response, the Load operation 506 restores the same control object to its previous state, in part by loading the text string “JDoe” into the property value. In addition, whether the state of a given object is stored and restored is configurable.
In summary of one embodiment of the present invention, the state of one or more server-side control objects is “saved” after processing. The saved state information is transmitted to the client in a response. The client returns the saved state information to the server in a subsequent response. The server loads the state information a freshly instantiated server-side control object hierarchy, such that the state of the hierarchy is restored to its previous state.
An alternative embodiment may maintain the state information on the server or at some other web location accessible by the server during the round trip from the server to the client, and then back to the server. After the client request is received by the server, this state information may be retrieved by the server and loaded into the appropriate server-side control object(s) in the control object hierarchy.
In operation 508, postback data received from the HTTP request is processed. Postback data may be included in the payload of the HTTP request in key-value pairs, in a hierarchical representation (e.g., XML), or in other data representations, such as RDF (“Resource Description Framework”). Operation 508 parses the payload to identify a unique identifier of a server-side control object. If the identifier (e.g. “page1:text1”) is found and the identified server-side control object exists in the control object hierarchy, the corresponding postback data is passed to the control object. For example, referring to
As discussed with regard to the Load operation 506, the property values of server-side control objects may be restored to their previous states. In response to the receipt of postback data, the server-side control object determines whether the passed-in postback value causes a change from the corresponding property's previous value. If so, the change is logged in a change list to indicate a data change for the associated control object. After all postback data has been processed within the control object hierarchy, a call may be made to a control object method to raise one or more postback data changed events to one or more non-user-interface server components, such as a stock price look-up application running on the server. An example of a postback data changed event is an event indicating that postback data has caused a property of a server-side control object to change. In an exemplary embodiment, such an event can be sent to a system-provided event queue so that a server component that is registered to process the event may be invoked. In this manner, a server-side non-user-interface server component can respond to events triggered by a change in data of a server-side control object. Alternative methods of implementing events are also contemplated in the scope of the present invention, including using application-provided event queues, polling, and processing interrupts.
In operation 510, postback events are handled. Postback events are communicated in the payload of the HTTP request. Operation 510 parses a specified event target (e.g., labeled “_EVENT TARGET” in an embodiment of the present invention) identifying the server-side control object to which the event is directed. Furthermore, operation 510 parses the located event arguments, if any, and provides the vent argument (e.g., labeled “_EVENTARGUMENT” in an embodiment of the present invention) to the specified server-side control object. The control object raises its events for processing by the non-user-interface server component (e.g., a server-side stock price look-up applications) associated with the dynamic content file. More details of postback data and postback event handling are described in the previously incorporated U.S. patent application Ser. No. 09/574,165, entitled POSTBACK INPUT HANDLING BY SERVER-SIDE CONTROL OBJECTS, presently awaiting the issuance of Letters Patent.
Operation 512 resolves data binding between the server-side control objects and one or more databases accessible by the server. In an embodiment of the present invention, properties of server-side control objects may be associated (or data bound) to properties of a parent data binding container, such as a table in a server-side application database. During the data binding operation 612, the page framework may update a data bound control object property with the value of the corresponding parent data binding container property. In this manner, user interface elements on the web page of the next response accurately reflect updated property values, because the control object properties to which the user interface elements corresponds have been automatically updated to the data binding operation 512. Likewise, control object properties can also be updated to the parent data binding container fields, thereby updating a server-side application database with postback input from a server-side control object. More details regarding data binding using server-side control objects are described in U.S. patent application Ser. No. 09/573,656, entitled DATABINDING USING SERVER-SIDE CONTROL OBJECTS, now U.S. Pat. No. 6,792,607, incorporated herein by reference for all that it discloses and teaches, filed concurrently herewith, and assigned to the Assignee of the present application.
Operation 514 performs miscellaneous update operations that may be executed before the control object state is saved and the output is rendered. Operation 516 requests state information (i.e., viewstate) from one or more control objects in the control object hierarchy and stores the state information for insertion into a transportable state structure that is communicated to the client in the HTTP response payload. For example, a “grid” control object may save a current index page of a list of values so that the “grid” control object may be restored to this state after a subsequent HTTP request (i.e., in operation 506). As described above, the view state information represents the state of the control object hierarchy prior to any subsequent actions by the client (e.g., before the HTTP response is sent to the client). When the view state information is returned, it will be used to place the control object hierarchy in that previous state prior to processing any client postback input or databinding.
The render operation 518 generates the appropriate authoring language output (e.g., HTML data) for communication to the client in an HTTP response. Rendering is accomplished through a top-down hierarchical tree walk of all server-side control objects and embedded rendering code. Operation 520 performs any final cleanup work (e.g., closing files or database connections) before the control object hierarchy is terminated. Processing then returns to operation 502 and proceeds to operation 522 where the page object is terminated by calling its destructor.
The declaration on line 14 declares a server-side form control object (index=“2”) that is to be instantiated into the control object hierarchy. The tags on line 17 and 18 are closing tags to be represented by a server-side literal control object (index=“3”) in the control object hierarchy. The closing tag on line 16 closes the <form> declarations corresponding to the form control object.
In a subsequent level of hierarchy, the declaration on line 15 declares a server-side label control object (index=“1”) using the HTML control tag “span” and having the identifier attribute (“id”) equaling “Message”. Indices “0” and “2” of this level of hierarchy are allocated respectively to a literal control object (index=“0”) for a preceding white space literal (e.g., tabs, new lines, spaces, etc.) and a literal control object (index=“2”) of a subsequent white space literal.
Lines 1 and 5 are starting and ending tags of the form section of the HTML code and are generated by the server-side form control objects declared at lines 14 through 16 of
The hidden fields on lines 2 and 3 represent an embodiment of a transportable state structure in accordance with the present invention. On line 2, the state information of the server-side control objects declared in the ASP+ resource 600 is recorded in the hidden field named “_VIEWSTATE”. The value of the _VIEWSTATE field is a text string representing the state values, property types, and hierarchical information of the control objects in the control object hierarchy. Hierarchical information is also included in the _VIEWSTATE field to allow the Load operation to traverse the hierarchy and load a given state value into a property of an appropriate control object in the hierarchy.
In an embodiment of the present invention, a client interacts with a web server using a sequence of HTTP request/response pairs. Between a response to the client and the next request received by the server, the server may not maintain the state of the server-side control objects associated with a given ASP+ resource or a given connection with the client. Instead, the state information for a given control object hierarchy is sent to the client in a transportable state structure (e.g., in the HTTP response), and returned to the server in the transportable state structure (e.g., in the next HTTP request).
Line 3 represents a hidden field named “_VIEWSTATEMAC” having a value of “434333433”. The _VIEWSTATEMAC is an integrity code in the transportable state structure that is used by the Load operation to verify that the _VIEWSTATE value was not corrupted at the client. The _VIEWSTATEMAC value is initially calculated at the server from the contents of the _VIEWSTATE value and communicated to the client in a response. When the client returns the transportable state structure, the web server calculates a new integrity code from the contents of the received _VIEWSTATE value. If the received integrity code and the newly calculated code are equal, then the web server assumes that the received _VIEWSTATE value is valid or otherwise uncorrupted (i.e., is the same as the _VIEWSTATE value that was previously sent to the client). In an embodiment of the present invention, an MD5 algorithm is used to calculate the integrity code. MD5 is an algorithm created in 1991 by Professor Ronald Rivest for use in creating digital signatures. MD5 is a one-way hash function, meaning that it takes a message and converts it into a fixed string of digits, also called a message digest. Such methods may include the use of a secret key to discourage tampering by unauthorized individuals or programs. Other embodiments, however, may include alternative integrity coding techniques, including generating a code based on the MD4 algorithm or any other hash algorithm, or the length of the _VIEWSTATE field.
In an embodiment of the present invention, the structure of the _VIEWSTATE field of line 2 represents a hierarchical nesting of control objects and their states (e.g., state values and their associated property data types). The tags used in an exemplary _VIEWSTATE field are described in Table 1. Tags that include a “/” character represent closing tags.
It should be understood that an exemplary encoding embodiment is disclosed herein, although in alternative embodiments, other encoding methods may be employed. For example, hierarchy information, state values and their associated property data types may be designated using unique hierarchical identifiers for each server-side control object, or an XML-related data format may be employed to represent the data in a transportable state structure. In addition, known encryption and compression techniques may be use to provide security and to reduce the size of the transportable state structure.
The page control object 804 corresponds to a special control object instantiated as the top level of the control object hierarchy and corresponding to the resulting web page itself. In an embodiment of the present invention, no specific declaration (i.e., a declaration having the “runat=server” attribute) is required to cause an instantiation of the page object 804.
At the next level of hierarchy, control objects 806, 808, 810, and 812 are instantiated as child control objects contained by or hierarchically related to the page object 804. Each control object in a level of hierarchy is assigned a zero-based index based on its top-down order in the ASP+ resource. For example, literal control object 806 corresponds to the “<html>” text and associated white spaces on line 1 of the ASP+ resource 600 in
At the next level of hierarchy, control objects 814, 816 and 818 are instantiated as child control objects contained by or hierarchically related to the form control object 810. The literal control object 814 corresponds to white space preceding the span declaration on line 15 of the ASP+ resource 600 of
As shown in line 5, the second element of the two-element array of line 3 indicates a hash table including state information for the page control object's children (namely, control objects 806, 808, 810 and 812 of
The value of the hash table entry is encompassed by the <V>, </V> tags of lines 9 and 24 and includes another two-element array to define the state of the form control object and its children. The first element of the array specifies the saved state information for the form control object (i.e., represented by a null value in this embodiment).
The second element specifies another one-entry hash table representing the state information for the children of the form control object. The <K>, </K> tags on lines 13 and 15 encompass the key for the single hash table entry, namely the integer value “1” indicated in line 14, which corresponds to the index of the label control object 816 of
The value of the hash table entry is encompassed by the <V>, </V> tags of lines 16 and 21 and includes another two-element array to define the state of the label control object and its children. The first element of the array specifies the saved state information for a property of the label control object, which is the string value “InnerHtml=5/16/99” specified in line 18. The property name, “InnerHtml” equals the state value “5/16/99” and is of type “string”. The semicolon represents the end of the state value for a given property. If the label control object of line 18 included additional properties for which the state was saved, each state data value and its associated property would be delimited by an ending semicolon. The null value indicated in line 19 as in the second element of the array indicates that label control object does not contain any children. The lines 20–27 represent closing tags for preceding starting tags in
In an alternative embodiment, a serialization format called Limited Object Serialization (LOS) format is used in a transportable state structure. In general, LOS format specifies a hash table of name/value pairs for each control object, wherein each hash entry contains either state information for a property of the control object or a nested hash table of a child control object.
Table 2 illustrates an exemplary grammar of the LOS format.
As a first example of how the LOS format may be used, consider the entry:
which defines a hash table of 2 name/value pairs, wherein the values are all strings. The first value is named “name1” and equals the string “value1”. The second value is named “name2” and equals the string “value with; escaped> “characters””.
As a second example of how LOS format may be used, consider the entry:
which defines a hash table having three hash entries: “control1”, “control2”, and “control3”. The first hash entry is named “control1” and includes a child hash table having two entries, which are name/value pairs. The name of the first entry in the control1 hash table uses the index “1” to reference the name “BackColor”, which is defined at the end of the example. The value of the first entry equals “blue” and is of type “System.Drawing.Color”, which is specified by the index “50” and defined near the end of the example. The name/value pair of the second entry in the control1 hash table includes the name “text” and the value “hello”. The “control2” hash entry includes child hash table having one hash entry, which also uses the index “1” to reference the name “BackColor”. The value equals “red” and is of type “System.Drawing.Color”. The “control3” hash table is empty. In a manner similar to that of the previously disclosed embodiment, hierarchy is specified by the nesting of the hash tables; however, other methods of describing hierarchy are contemplated within the scope of the present invention, including the use of hierarchical identifiers.
Receiving operation 1000 receives a transportable state structure from a client, such as in an HTTP request. Marking operation 1002 sets an initial state indication for all control objects in the server-side hierarchy. Reading operation 1004 reads the received transportable state structure to extract the state information and corresponding property types.
Checking operation 1006 performs an integrity check on the transportable state structure (e.g., using the _VIEWSTATEMAC Value). In an embodiment of the present invention, checking operation 1006 involves (1) reading a received integrity code from the transportable state structure; (2) calculating an integrity code of its own from at least the state information included in the transportable state structure; and (3) comparing the received integrity code with the newly calculated integrity code to determine if the transportable state structure has been corrupted during the round trip to the client. If the transportable state structure is determined to be corrupted, the server-side code can respond to handle the exception, including by aborting the load operation, continuing with processing in the absence of state information or raising an error.
A verification operation 1008 verifies the file check code included in the transportable state structure. In an embodiment of the present invention, verification operation 1008 includes (1) reading the received file check code from the _VIEWSTATE field; (2) calculating its own file check code from at least the contents of the ASP+ resource store on the server; (3) and comparing the received file check code with the newly calculated from file check code to determine whether the state information in the transportable state structure corresponds to the same version of the ASP+ resource on the server. Verification operation 1008 is used to verify that the ASP+ resource on the server did not change during the transportable state structure's round trip to the client. If the ASP+ resource on the server did change, then the server may discard the received state information, abort the load operation and/or signal an error to the client. In one embodiment, the control object hierarchy is created in its initial state and the load operation is aborted before the server proceeds with processing the request. Traversing operation 1010 traverses to the page control object of the server-side control object hierarchy.
Parsing operation 1012 parses state information for a control object hierarchy corresponding to a control object in the nested _VIEWSTATE field. In the first iteration, the corresponding control object is the page control object traversed to in traversing operation 1010. In subsequent iterations, the corresponding control object is a descendant control object of the page control object and is located by the traversal operation 1028. The parsing operation 1012 may extract a state value and convert the value, which is initially in a string format when it is parsed, into the given property type. Loading operation 1014 loads the state information parsed from the _VIEWSTATE value into a property of a control object. Indicating operation 1016 sets a change state indication for the current control object. This indication may be later used to only save the state of those control objects in which the state has changed from an initial state, thereby minimizing the size of the transportable state structure. Alternatively, all state information may be saved. During postback data handling, postback event handling, and data binding operations in the control object hierarchy, changes made to the state of a control object may also result in the setting of the changed state indication for individual control objects. In an embodiment of the present invention, however, any data change indication that is set due to data binding operations is reset so that the state of that property is not recorded in the transportable state structure, thereby further minimizing the size of the transportable state structure. The state of such a property is dependent on the data specified by the binding relationship, which will be updated in the data binding operation 512 of
Decision operation 1018 directs processing to operation 1022, if additional state information exists for the current control object. If so, operation 1022 parses the state information for the next control object property in the current control object and directs processing to operation 1014. If no additional state information is available for the current control object, decision operation 1018 directs processing to decision operation 1020, which directs processing to processing operation 1024 if no other control object state information is available in the _VIEWSTATE value. If decision operation 1020 determines that additional control objects exist for which states have not been processed, processing proceeds to operation 1026, which parses the state information for the next control object from the _VIEWSTATE value. Traversing operation 1028 traverses to the next control object corresponding to the new state information parsed in operation 1026. Thereafter, processing proceeds to loading operation 1014. The recursive parsing operations of
In an embodiment of the present invention, a server-side control object can be created with a “MaintainState” property, which indicates whether the property values of the control object (and its children) should be saved into the transportable state structure. If not, the traversal operation 1106 may skip the server-side control object and its children in this process. Otherwise, if the state of the control object is to be maintained in accordance with the “MaintainState” property, then the traversal operation 1106 will traverse into the control object.
Decision operation 1108 directs processing to reading operation 1115, which reads the new state value and its type from the control object property. Operation 1110 records the new state value and its type before proceeding to operation 1111. For the purposes of this discussion, if no property exists within the current control object, the property is represented by a “null” value in the _VIEWSTATE field. If the current control object's property is still in its initial state in operation 1108, processing proceeds to decision operation 1111. If another property exists within the current control object in operation 1111, processing proceeds to decision operation 1108.
If no other property exists in the current control object in operation 1111, processing proceeds to decision operation 1112, which directs processing to traversal operation 1114 if another control object exists in the hierarchy. Traversal operation 1114 traverses to the next control object in the control object hierarchy and proceeds to decision operation 1108 to access the control object's property. If no other control object exists in the hierarchy in operation 1112, processing proceeds to serializing operation 1116 which serializes the new state information (including state value types) obtained in the previous operations and stores them into the transportable state structure. Operation 1118 calculates an integrity code (such as by using an MD5 algorithm), and operation 1120 stores the integrity code into the transportable state structure, such as in the _VIEWSTATEMAC field. It should be understood that the integrity code operations and the filed check code operations are optional and may be omitted in an alternative embodiment of the present invention. Operation 1122 transmits the transportable state structure to the client, such as in an HTTP response containing the rendered HTML code generated by the control object hierarchy.
The embodiments of the invention described herein are implemented as logical steps in one or more computer systems. The logical operations of the present invention are implemented (1) as a sequence of processor-implemented steps executing in one or more computer systems and (2) as interconnected machine modules within one or more computer systems. The implementation is a matter of choice, dependent on the performance requirements of the computer system implementing the invention. Accordingly, the logical operations making up the embodiments of the invention described herein are referred to variously as operations, steps, objects, or modules.
The above specification, examples and data provide a complete description of the structure and use of embodiment of the invention. Since many embodiments of the invention can be made without departing from the spirit and scope of the invention, the invention resides in the claims hereinafter appended.
The present application is a continuation of U.S. patent application Ser. No. 09/574,144, entitled “State Management of Server-Side Control Objects”, now U.S. Pat. No. 6,757,900 and filed on May 18, 2000. The present application is further related to U.S. patent application Ser. No. 09/573,656, entitled DATABINDING USING SERVER-SIDE CONTROL OBJECTS, now U.S. Pat. No. 6,792,607; U.S. patent application Ser. No. 09/573,769, entitled SERVER-SIDE CONTROL OBJECTS FOR PROCESSING CLIENT-SIDE USER INTERFACE ELEMENTS, now U.S. Pat. No. 6,961,750; U.S. patent application Ser. No. 09/573,768, entitled SERVER-SIDE CODE GENERATION FROM A DYNAMIC WEB PAGE CONTENT FILE, now U.S. Pat. No. 6,990,653 and U.S. patent application Ser. No. 09/574,165, entitled POSTBACK INPUT HANDLING BY SERVER-SIDE CONTROL OBJECTS, presently awaiting the issuance of Letters Patent, assigned to the Assignee of the present invention.
Number | Name | Date | Kind |
---|---|---|---|
3937925 | Boothroyd | Feb 1976 | A |
3956615 | Anderson et al. | May 1976 | A |
4186871 | Anderson et al. | Feb 1980 | A |
4807154 | Scully et al. | Feb 1989 | A |
4847785 | Stephens | Jul 1989 | A |
4949300 | Christenson et al. | Aug 1990 | A |
4979148 | Bush et al. | Dec 1990 | A |
5299315 | Chin et al. | Mar 1994 | A |
5349657 | Lee | Sep 1994 | A |
5388156 | Blackledge, Jr. et al. | Feb 1995 | A |
5465332 | Deloye et al. | Nov 1995 | A |
5517655 | Collins et al. | May 1996 | A |
5548340 | Bertram | Aug 1996 | A |
5550560 | Kanada et al. | Aug 1996 | A |
5604908 | Mortson | Feb 1997 | A |
5638176 | Hobbs et al. | Jun 1997 | A |
5640449 | Worley et al. | Jun 1997 | A |
5664228 | Mital | Sep 1997 | A |
5675520 | Pitt, III et al. | Oct 1997 | A |
5706505 | Fraley et al. | Jan 1998 | A |
5732256 | Smith | Mar 1998 | A |
5732267 | Smith | Mar 1998 | A |
5745103 | Smith | Apr 1998 | A |
5748890 | Goldberg et al. | May 1998 | A |
5774670 | Montulli | Jun 1998 | A |
5793982 | Shrader et al. | Aug 1998 | A |
5812996 | Rubin et al. | Sep 1998 | A |
5835724 | Smith | Nov 1998 | A |
5855020 | Kirsch | Dec 1998 | A |
5878141 | Daly et al. | Mar 1999 | A |
5878282 | Mital | Mar 1999 | A |
5897622 | Blinn | Apr 1999 | A |
5911068 | Zimmerman et al. | Jun 1999 | A |
5918007 | Blackledge, Jr. et al. | Jun 1999 | A |
5940075 | Mutschler, III | Aug 1999 | A |
5940847 | Fein et al. | Aug 1999 | A |
5953524 | Meng et al. | Sep 1999 | A |
5956489 | San Andres et al. | Sep 1999 | A |
5961601 | Iyengar | Oct 1999 | A |
5963952 | Smith | Oct 1999 | A |
5983227 | Nazem et al. | Nov 1999 | A |
5991802 | Allard et al. | Nov 1999 | A |
6006230 | Ludwug et al. | Dec 1999 | A |
6014637 | Fell et al. | Jan 2000 | A |
6014666 | Helland et al. | Jan 2000 | A |
6032207 | Wilson | Feb 2000 | A |
6038551 | Barlow et al. | Mar 2000 | A |
6067578 | Zimmerman et al. | May 2000 | A |
6072664 | Aoyagi et al. | Jun 2000 | A |
6076108 | Courts et al. | Jun 2000 | A |
6101607 | Bachand et al. | Aug 2000 | A |
6108717 | Kimura | Aug 2000 | A |
6115744 | Robins | Sep 2000 | A |
6121968 | Arcuri et al. | Sep 2000 | A |
6138150 | Nichols et al. | Oct 2000 | A |
6167524 | Goodnow et al. | Dec 2000 | A |
6178461 | Chan | Jan 2001 | B1 |
6185608 | Hon et al. | Feb 2001 | B1 |
6203220 | Takenoshita et al. | Mar 2001 | B1 |
6205480 | Broadhurst et al. | Mar 2001 | B1 |
6212192 | Mirashrafi et al. | Apr 2001 | B1 |
6218958 | Eichstaedt et al. | Apr 2001 | B1 |
6230160 | Chan | May 2001 | B1 |
6246422 | Emberling et al. | Jun 2001 | B1 |
6247044 | Gosling et al. | Jun 2001 | B1 |
6253228 | Ferris et al. | Jun 2001 | B1 |
6253234 | Hunt et al. | Jun 2001 | B1 |
6279151 | Breslau et al. | Aug 2001 | B1 |
6286133 | Hopkins | Sep 2001 | B1 |
6326957 | Nathan et al. | Dec 2001 | B1 |
6334157 | Oppermann et al. | Dec 2001 | B1 |
6343148 | Nagy | Jan 2002 | B1 |
6351767 | Batchelder et al. | Feb 2002 | B1 |
6353447 | Truluck et al. | Mar 2002 | B1 |
6354477 | Trummer | Mar 2002 | B1 |
6363352 | Dailey et al. | Mar 2002 | B1 |
6370561 | Allard et al. | Apr 2002 | B1 |
6373841 | Goh et al. | Apr 2002 | B1 |
6397253 | Quinlan et al. | May 2002 | B1 |
6401099 | Koppolu et al. | Jun 2002 | B1 |
6405241 | Gosling | Jun 2002 | B1 |
6412008 | Fields et al. | Jun 2002 | B1 |
6430575 | Dourish et al. | Aug 2002 | B1 |
6460071 | Hoffman | Oct 2002 | B1 |
6460141 | Olden | Oct 2002 | B1 |
6463442 | Bent et al. | Oct 2002 | B1 |
6480894 | Courts et al. | Nov 2002 | B1 |
6487665 | Andrews et al. | Nov 2002 | B1 |
6505238 | Tran | Jan 2003 | B1 |
6546516 | Wright et al. | Apr 2003 | B1 |
6557038 | Becker et al. | Apr 2003 | B1 |
6560598 | Delo et al. | May 2003 | B1 |
6560618 | Ims | May 2003 | B1 |
6560639 | Dan et al. | May 2003 | B1 |
6564251 | Katariya et al. | May 2003 | B1 |
6591272 | Williams | Jul 2003 | B1 |
6606418 | Mitchell et al. | Aug 2003 | B1 |
6622168 | Datta | Sep 2003 | B1 |
6633416 | Benson | Oct 2003 | B1 |
6725219 | Nelson et al. | Apr 2004 | B1 |
6728421 | Kokemohr | Apr 2004 | B1 |
6920480 | Mitchell et al. | Jul 2005 | B1 |
20010054020 | Barth et al. | Dec 2001 | A1 |
20020004815 | Muhlestein et al. | Jan 2002 | A1 |
20020008703 | Merrill et al. | Jan 2002 | A1 |
20020083171 | Hoogenboom et al. | Jun 2002 | A1 |
20020108102 | Muhlestein et al. | Aug 2002 | A1 |
20020188890 | Shupps et al. | Dec 2002 | A1 |
20030009476 | Fomenko et al. | Jan 2003 | A1 |
20030009519 | Gosling et al. | Jan 2003 | A1 |
20030009567 | Farouk | Jan 2003 | A1 |
20030018827 | Guthrie et al. | Jan 2003 | A1 |
20030025728 | Ebbo et al. | Feb 2003 | A1 |
20030028565 | Landsman et al. | Feb 2003 | A1 |
20030074634 | Emmelmann | Apr 2003 | A1 |
20030097639 | Niyogi et al. | May 2003 | A1 |
20040003112 | Alles et al. | Jan 2004 | A1 |
20040003139 | Cottrille et al. | Jan 2004 | A1 |
20040003248 | Arkhipov | Jan 2004 | A1 |
20040073873 | Croney et al. | Apr 2004 | A1 |
Number | Date | Country |
---|---|---|
01 11 1679 | Dec 2000 | EP |
WO 9821651 | May 1998 | WO |
WO 9844695 | Oct 1998 | WO |
WO 9934288 | Jul 1999 | WO |
Number | Date | Country | |
---|---|---|---|
20040199577 A1 | Oct 2004 | US |
Number | Date | Country | |
---|---|---|---|
Parent | 09574144 | May 2000 | US |
Child | 10818684 | US |