US20040143591A1 - Method and system for database-driven, scalable web page development, deployment, download, and execution - Google Patents

Method and system for database-driven, scalable web page development, deployment, download, and execution Download PDF

Info

Publication number
US20040143591A1
US20040143591A1 US10/635,084 US63508403A US2004143591A1 US 20040143591 A1 US20040143591 A1 US 20040143591A1 US 63508403 A US63508403 A US 63508403A US 2004143591 A1 US2004143591 A1 US 2004143591A1
Authority
US
United States
Prior art keywords
web page
data
side computer
client
page
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US10/635,084
Inventor
Gillis Onyeabor
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
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 Individual filed Critical Individual
Priority to US10/635,084 priority Critical patent/US20040143591A1/en
Publication of US20040143591A1 publication Critical patent/US20040143591A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking

Definitions

  • the present invention relates generally to database access over the Internet and, more particularly, to Web page development, deployment, and execution conducive to database access and manipulation over the Internet.
  • Web The World Wide Web, commonly referred to as the “Web,” has become a valuable Internet resource for business, scientific, and personal research and promotion. Individuals and businesses alike create and post Web pages containing all types of information.
  • the files defining such Web pages are typically stored on a “server” computer which is accessible to “client” computers via the Internet or some other network. Once associated with a server, a Web page can be accessed and viewed on a client computer using commercially-available Web browsers, such as Netscape Navigator and Microsoft Explorer.
  • Web pages have become more complex and businesses have asked Web page developers to provide more and more information display capabilities.
  • One such capability which has become a highly-desirable Web application, is the capability to remotely access and manipulate data. For example, a company may want its sales personnel to have Internet access to the company's databases while those sales personnel are in the field.
  • prior art systems struggle with Internet database applications, specifically in the areas of efficiency, security, state management, and data “briefcasing.”
  • a “database” refers to a collection of information organized in tables and stored on a server computer or accessible to a server computer via a database manager.
  • a “table” refers to a collection of data which organizes similar things together. For example, in a company database, one table might keep track of employee information and another table might keep track of sales activities. Every table contains columns and rows. For the purposes of this description, a column defines what type of information is gathered (e.g., name, hire date, salary) and a row stores that information (e.g., a row exists for each salesperson).
  • a row of data is also referred to herein as a “record,” and a column of data is referred to herein as a “field.”
  • a “relational database” is a database having multiple tables whose records are linked together by keys.
  • HTML HyperText Markup Language
  • HTML document based access is very inefficient. If an HTML document is being used to display information from a database lookup, then each time the user requests a different set of data, the server must invoke a “Common Gateway Interface” Or “CGI” script which interacts with the database manager to obtain the data. Then the server must send all information on the page to the browser. Even though the information in only a single field is different (i.e., the field containing the new set of data), all static and unmodified page information must also be downloaded. This HTML limitation leads to slow and inefficient database access. In addition, the CGI scripts add a layer of processing between the server and the database, thus adding a level of inefficiency to the system.
  • Database access is considered an interactive Web application because it often requires a client computer to interchange many messages with a server. This is particularly true when a user wants to access, via a Web page, a large number of records within a database table.
  • HTML was developed primarily as a language to enable text displays, and it is not well-suited to interactive applications, including database access and manipulation applications. Therefore, many Web pages, including database-oriented Web pages, have added Java, JavaScript, and ActiveX controls to their HTML documents in order to provide better interactive capabilities. Unfortunately, however, the use of Java, JavaScript, and Active X controls pose serious security problems to the integrity of computers and computer networks.
  • Java is a programming language which is specially adapted to support the development of Internet applications. Java enables an application designer to transport objects across the Internet, hence enabling database access. During an interactive session with a Web page, Java, JavaScript, and Active X operate similarly. In the interests of brevity, only Java is discussed, although the security problems pertaining to Java exist also with JavaScript and ActiveX.
  • a Java “applet” is a Java program specifically designed for incorporation by an HTML document. Rather than including the actual applet code within an HTML document, “canned” applet code is often downloaded from somewhere else on the Web and then executed on the client machine. Such an applet is referred to generically as a “downloaded executable.”
  • an HTML document would include, among other things, the Uniform Resource Locator, or “URL,” identifying the location of the applet on the Web.
  • URL Uniform Resource Locator
  • an HTML document could invoke an applet called “Clock” stored at http://java.sun.com/openstudio/index.html.
  • compiled “Clock” applet code is dowvnloaded from “java.sun.com” to the client machine. The client's browser then executes the applet on the client machine.
  • Java applet is a major culprit, although similar security problems exist with JavaScript and ActiveX. Java applets, which can be downloaded from anywhere, may include “malicious” code. Upon execution of the downloaded applet, such applet could, for example, perform unauthorized file operations on the client machine.
  • DHTML Dynamic HTML
  • DHTML Dynamic HTML
  • DHTML is more secure than ActiveX because it is interpreted by the browser, which can override the code and prevent system violations.
  • HTML DHTML requires a server to dynamically create a Web page each time an update to the page is requested. For example, if a user interacting with a DHTML-generated page requests a new piece of data in a single field within the page, a CGI script would be invoked at the server to regenerate the entire page, even though only one piece of data changed.
  • DHTML may reduce some security risks, but it requires developers to create server-side CGI scripts, and DHTML also has efficiency problems when used in database applications.
  • State management refers to the maintenance of information which describes the particular state that a program is in. In a database application, state management enables a system to keep track of who is accessing a database, what records that user has accessed, and what records would be next.
  • IntraBuilder is a tool which runs on the server machine. When a new user requests access to a database, the IntraBuilder tool creates an “agent” on the server for that user. The agent is responsible for knowing what user it is associated with and for providing state management for that user.
  • One disadvantage to this agent concept is that hundreds or even thousands of agents could simultaneously exist on a server which provides access to one or more particularly-popular databases. The presence of a substantial number of agents is a burden on the server and limits the server's ability to provide database access.
  • Netscape In order to alleviate this problem, Netscape apparently modified its browser to recognize the messages coming from the server side when the Web page is posted. That enhanced the Netscape browser's ability to post the information in a relatively close position to the desired position.
  • the Netscape modification has not resulted in an optimum solution because it only works for a Web page with a relatively small number of components (e.g., approximately 20).
  • Many Web page designers incorporate numerous components, sometimes in the hundreds. For example, a particular database may have sixty or more fields that a designer would like the page to display. Thus, the Web page would require sixty or more components. The current Netscape browser would be ill equipped to handle such a page.
  • Emrys Visions Another tool for providing database access is “Emrys Visions” from Emrys Solutions, Inc.
  • the Emrys Visions tool is located and runs on the client machine.
  • the Emrys Visions tool also seeks to solve the problem of state management inherent in the make-transfer-break data transfer protocol by forcing the browser to maintain a persistent connection with the server during the entire database browsing session.
  • a major disadvantage to the Emrys Visions solution is that it forces the client to continuously consume bandwidth, both on the client and server sides. As stated previously, such a persistent connection is undesirable for an Internet application because it consumes substantially more bandwidth than may be necessary.
  • Another disadvantage to prior-art systems is that they do not adequately provide the ability to “briefcase” data.
  • “Briefcasing” refers to a user's ability to download data from a server to his client machine, manipulate the data offline, re-connect to the server at a later time, and post his changes to the database.
  • the inability to briefcase is related to the inability to maintain state information adequately.
  • the server would have no idea how to reconcile a user's changes with existing records or with changes posted by other users.
  • one solution might be to enable a server or database manager to place a lock on the records to prevent other users from making changes after one user downloads those records, such an approach would be impractical in a situation where many users need to manipulate the data.
  • FIG. 1 illustrates a simplified hardware diagram of a system in accordance with a preferred embodiment of the present invention
  • FIG. 2 illustrates a page editor display in accordance with a preferred embodiment of the present invention
  • FIG. 3 illustrates a flowchart of a method for creating and deploying a Web page in accordance with a preferred embodiment of the present invention
  • FIG. 4 illustrates an exemplary code editor display in accordance with a preferred embodiment of the present invention
  • FIG. 5 illustrates a flowchart of a method for adding a database component to a Web page in accordance with a preferred embodiment of the present invention
  • FIG. 6 illustrates a simplified hardware block diagram of a Web page development computer in accordance with a preferred embodiment of the present invention
  • FIG. 7 illustrates a flowchart of a method for receiving, storing, and delivering Web pages in accordance with a preferred embodiment of the present invention
  • FIG. 8 illustrates a flowchart of a method for controlling access to a Web page or data in accordance with a preferred embodiment of the present invention
  • FIG. 9 illustrates a simplified hardware block diagram of a server-side computer in accordance with a preferred embodiment of the present invention.
  • FIG. 10 illustrates a flowchart of a method for requesting, receiving, and displaying a Web page and/or data in accordance with a preferred embodiment of the present invention
  • FIG. 11 illustrates a flowchart of a method for posting modified data to a remote database in accordance with a preferred embodiment of the present invention
  • FIG. 12 illustrates a simplified hardware block diagram of a client-side computer in accordance with a preferred embodiment of the present invention
  • FIG. 13 illustrates a flowchart of a method for multi-page data linking in accordance with a preferred embodiment of the present invention
  • FIG. 14 illustrates an exemplary linked Web page display in accordance with a preferred embodiment of the present invention.
  • FIG. 15 illustrates a flowchart of a method for scrolling through data in association with linked pages in accordance with a preferred embodiment of the present invention.
  • the method and apparatus of the present invention provides a way to access data over the Internet while providing efficient, accurate state management without unduly consuming bandwidth or other server resources.
  • the method and apparatus of the present invention further provides a way to provide an Internet-based “briefcasing” capability for database access and modification.
  • the method and apparatus of the present invention further provides a database access tool which eliminates security risks imposed by malicious code without a reduction in download and display efficiency.
  • the method and apparatus of the present invention include a Web page development tool which enables a developer to create a Web page document which includes executable code, thus eliminating the need to download foreign executables during display and manipulation of a page. This virtually eliminates the risk that malicious code will be downloaded and allowed to wreak havoc on the client machine.
  • the pages developed in accordance with a preferred embodiment are particularly adept at handling database access and manipulation, in part because the client machine performs the state management tasks. This reduces the load on the server to maintain numerous “agents” and also eliminates the need to maintain a persistent connection during a user's database access session. Finally, it enables a user easily to “briefcase” data, edit it offline, and reconcile the modified data with the database entries at a later date.
  • the method and apparatus of the present invention utilize a modified version of a commonly known, object-oriented software language in order to provide a very short learning curve and a likelihood that most platforms will support the language.
  • the language is object oriented Pascal with some extensions, although other languages also could be used such as, for example, C++.
  • a preferred embodiment of the method and apparatus of the present invention provides encryption and decryption to increase the security of the system.
  • such encryption and decryption is performed on Web pages, data requests, and data messages.
  • FIG. 1 illustrates a simplified hardware diagram of a system in accordance with a preferred embodiment of the present invention.
  • System 100 includes Web page development computer 110 , server-side computer 140 , and client-side computer 170 .
  • Web page development computer 110 and client-side computer 170 are shown connected to server-side computer 140 through the Internet 102 .
  • the method and apparatus of the present invention also could be used in a system where either or both computers 110 , 170 are connected to server-side computer 140 over a LAN, WAN, or other network or link, where such link could be electronic, optical, wireless, or some combination thereof.
  • Web page development computer 110 and client-side computer 170 could be the same or different machines. Because the Web page development and client functions are different, they are shown as separate computers for the ease of illustration. In addition, only one Web page development computer 110 and one client-side computer 170 are shown connected to server-side computer 140 . In some cases, substantially more than one of computers 110 and/or 170 could be connected to server-side computer 140 .
  • Web page development computer 110 is used by a human developer to create a Web page in accordance with a preferred embodiment.
  • Web page development computer 110 then encrypts the page, although the encryption step is not essential.
  • Web page development computer 110 then sends the Web page to server-side computer 140 over the Internet or some other link.
  • server-side computer 140 sends the Web page to client-side computer 170 for its use.
  • the Web page can then request data from server-side computer 140 .
  • the Web page maintains state information during the database interaction session, and possibly beyond.
  • Web pages created by computer 110 could be sent to the server in some other fashion besides sending the information over a physical link to the server.
  • one or more Web pages could be stored on a disk or other storage medium, and the pages stored on that storage medium could be loaded onto the server-side computer 140 .
  • the page developer In order to build a Web page or to edit a previously-created page, the page developer, via Web page development computer 110 , invokes a program which provides the functions described below. After being invoked, the program displays a “page editor display” which includes several fields which the user manipulates to create a Web page.
  • FIG. 2 illustrates a page editor display in accordance with a preferred embodiment of the present invention.
  • the page editor display 200 shows three fields 210 , 220 , 230 .
  • Page builder field 220 shows the Web page currently under design. Upon creation of a new page, page builder field 220 would show a blank page. The page designer would then add components to the blank page to create a new page. In a preferred embodiment, a designer could simultaneously edit multiple pages using the tool. In a preferred embodiment, when multiple pages are being edited, the currently active page would be shown within page builder field 220 , and the other pages would be hidden. In an alternate embodiment, such pages would be shown cascaded within page builder field 200 .
  • Component properties field 230 includes a list of properties that a particular component may have.
  • the developer has selected an edit box component 222 within page builder field 220 .
  • the selected component is used to display the “First Name” of an employee.
  • the particular component properties for such a text component are listed in the left column of the component properties field 230 , and the value for each component property is listed in the right column.
  • Component properties could include, for example, component position information, size information, color, text characteristics, and other relevant properties. Originally, the component properties would be default properties for the particular type of component. If desired, the developer can edit the entries in the right column of component properties field 230 to specify different values of the component properties for the selected component.
  • Toolbar field 210 includes icons 212 which enable the developer to perform functions such as adding a new component to a page, editing source code or properties for a component, linking a component with a component on the same page or another page, and aligning components, among other things.
  • one such icon 212 in order to add a component to a page, one such icon 212 produces a drop-down menu of components which could be added to the page (e.g., by dragging).
  • selectable components could include, for example, a button, an edit box for inputting text, a label, an image, an audio icon, a data display box, a menu, a panel, and a hyperlink, although more, fewer, or different components also could be selectable. Adding components is described in detail in conjunction with FIG. 3, steps 320 - 324 .
  • a visible component may be, for example, a button or image that a user may or may not be able to interact with.
  • a hidden component may, for example, not be visible to the user, but may initiate executable code upon some event occurring.
  • one hidden component could be a component which enables a Web page to increase or decrease its display resolution automatically, depending upon what resolution screen the page is asked to be displayed upon.
  • Such code could be invoked when the Web page document is received by the client computer. The code would determine the computer's screen resolution and, if it did not match the Web page's current resolution, the code would multiply or divide the number of pixels and resolution necessary to display the Web page at the proper resolution on the client machine.
  • a developer could include custom-developed components which are not currently available in the prior art.
  • one novel component which can be included on a page is a “report generation” component.
  • a report generation component could appear in the form of a button, for example, which a developer adds to a Web page. When a user clicks the report generation component, the page could execute code which extracts data and information from the Web page, formats that data into a report template, and creates a report document which the user could then store, view, and/or print.
  • the report template would be defined by the developer when the Web page was developed. In an alternate embodiment, a default template could be used.
  • the user could specify the format of the report at the time that the user requested the report.
  • the “report generation” component provides a distinct advantage over prior-art methods which can provide a screen dump of a Web page, but cannot neatly format information on the page into a well-formatted report or other document.
  • the method and apparatus of the present invention enables a user to create such a well-formatted report or other document from a Web page.
  • another icon 212 could cause the tool to invoke a code editor screen, which enables a developer to associate code to a particular component and to specify which events cause that code to be executed. For example, when a particular button component is “clicked,” a developer may want certain code to execute which causes a next database record to be requested. The page developer could use the code editor screen to specify, for that button component, that upon the event “clicked,” code would be executed which causes the next record to be requested.
  • the code editor screen is discussed in detail in conjunction with FIG. 4, and the process of editing code is discussed in detail in conjunction with FIG. 3, steps 340 - 344 .
  • the code editor utilizes an object oriented language such as Pascal, preferably with some extensions. In alternate embodiments, other languages could be used such as, for example, C++.
  • Another icon 212 could enable components to be linked within the same page or different pages.
  • a user could scroll through data within a first component, and the second component would automatically update to show corresponding information.
  • Component linking is described in detail in conjunction with FIG. 3, steps 330 - 336 .
  • FIG. 3 illustrates a flowchart of a method for creating and deploying a Web page in accordance with a preferred embodiment of the present invention.
  • the method is performed on a computer such as Web page development computer 110 , FIG. 1.
  • the method begins by performing the step 301 of initializing the page development tool.
  • a developer initializes the page development tool when he wants to create a new page or edit a previously-created page.
  • computer 110 retrieves the tool's executable code from memory and initiates execution of the code.
  • the tool displays a page editor display (e.g., display 200 , FIG. 2), and gives the developer the option, in step 302 , of whether to start a new application or open a previously-created application.
  • this option could be given as a selectable menu item.
  • the option may be given via a prompt from the tool.
  • All Web pages are created as part of an application concept, where each application concept is represented by an application file which can group information about one or more Web page files within it. Therefore, information about a previously-created page file would exist within a previously-created application file. If a developer wants to create a new page, the developer must associate the new page file with a previously-created application file, or the developer must start a new application file.
  • step 302 If, in step 302 , the developer indicates that he wants to open an existing application, then the existing application file is opened, in step 303 , and the main page file of that application is automatically retrieved, instep 310 . Steps 310 - 312 are described in more detail, below.
  • step 302 If, in step 302 , the developer indicates that he wants to start a new application, then a new application file is started in step 304 .
  • the new application file can then be used as a vehicle to store information about Web pages.
  • the tool gives the developer an option of creating a new page or editing a previously edited page in step 305 . In a preferred embodiment, this option could be given as a selectable menu item. In an alternate embodiment, the option may be given via a prompt from the tool. In some cases, it may be possible for a developer to open a Web page file directly, without first opening its associated application file.
  • step 305 If, in step 305 , a determination is made that the developer wants to create a new page, the tool displays a blank page, toolbar field, and component properties field on the developer's monitor in step 306 .
  • step 308 the tool also creates a “page document,” similar to an HTML document, which the tool will edit as the developer edits the page. Initially, the page document will be structured as if it describes a blank Web page.
  • step 305 If, in step 305 , a determination is made that the developer wants to edit a previously-created page, the tool retrieves a copy of the associated page document from memory in step 310 , and displays the page, along with the toolbar field and component properties field in step 312 .
  • the tool then waits for additional developer input in step 314 .
  • the following types of developer inputs are possible: 1) a new component has been added to the page; or 2) the developer wishes to link components; or 3) the developer wishes to edit the component code; or 4) the developer wishes to delete a component; or 5) the developer wishes to edit a component property; or 6) the developer wishes to save the page and quit; or 7) the developer wishes to quit without saving the page; or 8) the developer wants to enter a new or existing application.
  • Each of the developer inputs is described below.
  • the flowchart includes steps and decisions only relevant to creating, compiling, and storing a Web page. It does not contemplate all possible developer inputs. In alternate embodiments, additional or different developer inputs are possible.
  • the tool places the selected component on the page in step 320 and retrieves the associated default code for that component in step 322 .
  • the component code is similar in function to a downloaded executable (e.g., a Java Applet), except that the component code will eventually be compiled as part of the Web page in accordance with the present invention, rather than being accessed over the Internet during runtime as a downloaded executable would be. Incorporation of the component code into the Web page eliminates the risk that malicious code will be downloaded and executed for that component.
  • the default code is incorporated into the page document in step 324 , including all information relevant to the type, position, and other properties of the component.
  • the position of the component is determined by the location where the developer dragged and dropped the component or a position specified by the developer in the component properties field (FIG. 2, field 230 ).
  • the component position could be a default position which the developer could later modify via the component properties field or using the mouse.
  • step 324 the method then returns to step 314 to wait for additional developer input.
  • the linking capability of the Web development tool is well suited to link data components.
  • the linking capability could be used to link other types of components.
  • the linking capability could be used, for example, to link one or more fields within one table to a different, but corresponding set of fields within another table in a relational database.
  • the linking capability could be used to link fields within the same table.
  • a developer may wish that a first page include data components which specify a customer ID number, address, and phone number from a “customer information” table of a relational database.
  • the developer may also wish to design a second page that includes a data component which lists a customer's ordering history, where such information, is stored in an “order information” table of the same or a different relational database.
  • the developer could link the customer ID number component on the first page with the ordering history component on the second page. Then, when a user of the first and second pages scrolls through customer ID numbers on the first page, the ordering information for each associated customer would automatically appear on the second page.
  • a similar linking example is described in more detail in conjunction with FIGS. 13 - 15 .
  • step 316 When the developer input indicates, in step 316 , that the developer wishes to link two components, then the developer identifies, in step 330 , which components are to be linked. Identification of the linked components could be made through one or more prompts from the Web development tool, or could be performed by the developer selecting the components which he would like to link, then clicking a “link components” icon (e.g., icon 212 , FIG. 2).
  • the developer is asked to specify a “Master” page and a “Detail” page.
  • the identity of the Master or Detail pages could be some default (e.g., the first component selected could define the Master page).
  • a Master page is the page which displays the “master” information to which the “detail” information on a Detail page is linked. Either or both the Master page and the Detail page include code which will formulate and send a data request to the server for both the data associated with the Master page and the data associated with the Detail page.
  • both pages could include code which would separately request the data associated with each linked component.
  • linking code is created in step 334 .
  • linking code enables a page to formulate a request for data which identifies the fields which are displayed on the page, and which identifies the fields which are displayed on other linked pages.
  • the linking code causes received data to be parsed, and the linked-page data to be sent to the linked page.
  • the linking code also enables a page to receive the data from another page, and to automatically display the data (e.g., in the ordering information component).
  • step 336 the linking code is added to the page documents for the Master and Detail pages. The method then returns to step 314 to wait for additional developer input.
  • the tool displays, in step 340 , a code editor screen in which the current source code for that component is included.
  • the developer edits the source code via the code editor screen.
  • FIG. 4 illustrates an exemplary code editor screen in accordance with a preferred embodiment of the present invention.
  • Code editor screen 400 includes a command line 410 , selectable action list 412 , and source code display area 414 .
  • source code display area 414 initially includes the current source code for that component.
  • the developer can then edit the displayed source code.
  • Via selectable action list 412 the developer can specify what action will invoke that particular code. For example, the developer can specify that the code should be invoked when information is “Entered” into a text field. As another example, the developer can specify that a “KeyUp” keystroke will cause the component to scroll upward through a list of data.
  • Command line 410 includes fields which help the developer in the editing process. For example one entry in command line 410 can enable the developer to access standard routines (e.g., absolute value or “Abs”), and include those standard routines in the source code. Another field in command line 410 could help a developer to identify tables within one or more databases, and to drop the table names into the code.
  • standard routines e.g., absolute value or “Abs”
  • Component code could include many different types of instructions. For example, when a customer number is entered into an edit box, the code could cause a data request to be created and sent to a server. Upon receipt of the data, the code could cause the data to be displayed in various other components.
  • a developer can also provide access protection as part of the component code. For example, if a particular database has restricted access, the developer can cause the page to prompt the user for access information (e.g., a user name and/or password) before the page will request the desired data.
  • access information e.g., a user name and/or password
  • Such user access could be controlled, for example, by including a list of valid users, user profiles, and/or passwords within the page document or stored at a server-side computer. If the entered access information does not match a stored user name, profile, and/or password, then the page could inform the user that access is denied. Otherwise, the page would request and provide the specified data.
  • a developer can incorporate other user privileges into the page document code and/or component code. For example, a developer can incorporate code which controls which users are allowed to briefcase a Web page. If a user does not have such privileges, the user would not be allowed to store a Web page and/or associated data on his client computer. A developer also can incorporate code which controls which users are allowed to modify data within a database. If a user does not have modification privileges, the page will not allow the user to post changes to records within the database.
  • the modified source code replaces the previous version of code in the page document in step 344 .
  • the method then returns to step 314 to wait for additional developer input.
  • step 316 When the developer input indicates, in step 316 , that the developer wishes to delete a component that currently exists on the page, the tool removes the component from the display page, in step 350 , and the component's associated source code is deleted from the page document in step 352 . The method then returns to step 314 to wait for additional developer input.
  • a developer can edit a component property via component property field 230 (FIG. 2) in accordance with a preferred embodiment.
  • the developer would simply modify the property value in the right column of field 230 .
  • the developer input indicates, in step 316 , that the developer wishes to edit a component property (e.g., the developer has entered a new property value)
  • the component code is modified within the page document in step 358 .
  • Such modifications could, for example, indicate that the component should be displayed in a different position, should have a different size, or should use a different font or color.
  • the method then returns to step 314 to wait for additional developer input.
  • the tool stores the page document in memory in step 360 .
  • the developer is then given the option of deploying the page document to a destination server. If, in step 362 , a determination is made that the developer does not want to deploy the page, then the tool is closed in step 370 (unless other pages are being edited), and the method ends.
  • step 362 If, in step 362 , a determination is made that the developer chooses to deploy the page, then the developer is prompted to identify (e.g., by its URL) a destination server in step 364 . After the file server is identified, the page file is compiled and, in a preferred embodiment, encrypted in step 366 . In an alternate embodiment, no encryption is performed. The Web page development computer 110 then establishes a link with the destination server and sends the encrypted page over the Internet (or other link) in step 368 . A determination is then made whether the developer wants to close the tool, in step 370 . If so, the tool is then closed in step 374 (unless other pages are being edited), and the method ends. If not, then a determination is made, in step 372 , whether the developer wants to close the current application. If so, then the procedure branches to step 301 . If not, then the procedure branches to step 314 .
  • step 316 When the developer input indicates, in step 316 , that the developer wishes to quit without saving, the tool closes itself, in step 370 (unless other pages are being edited), without saving the page file to memory, and the method ends.
  • step 316 When the developer input indicates, in step 316 , that the developer wants to open a new or existing application, then the process branches back to step 302 , where the tool determines whether the desired application is new or existing. The procedure then continues as shown in FIG. 3.
  • FIG. 5 illustrates a flowchart of a method for adding a database component to a Web page in accordance with a preferred embodiment of the present invention. Such a component would be added to a page, for example, in accordance with step 320 of FIG. 3.
  • the method begins, in step 502 , when a developer indicates that he would like to place a data component on a page.
  • the Web page development tool prompts the developer for the database alias.
  • the database alias could be a name which the tool uses to identify the path of the database.
  • the tool displays the names of the tables associated with that database in step 506 .
  • the developer is prompted to select one or more tables from the database, and the tool waits for the developer selection in step 508 .
  • the tool adds each table field as a separate component to the page in step 510 .
  • the tool could display all fields and allow the developer to select which field (or fields) the developer would like to have added to the page.
  • the tool creates the component code for each component in step 512 .
  • the component code would include information necessary to request, receive, and display the data. Typically, if several components include data from the same table, only one of the components needs to perform the actual data request. Such request would request data for each of the related field components. Creation of component code is analogous to accessing code in step 322 , FIG. 3.
  • the method then waits for additional developer input in step 514 .
  • developer input is received, a determination is made, in step 516 , what type of developer input has been received.
  • the following types of developer inputs are possible: 1) the developer wishes to modify the display format; or 2) the developer wishes to delete a field; or 3) the developer wishes to specify a field constraint; or 4) the developer indicates that he is done.
  • Each of the developer inputs is described below. For ease of illustration, the flowchart does not contemplate all possible developer inputs. In alternate embodiments, additional or different developer inputs are possible.
  • step 518 the display format is moved, resized, or otherwise modified in accordance with the developer's instructions. For example, a developer may want to align all data components differently from the current alignment. The developer could specify this change in display format, in a preferred embodiment, by selecting an alignment icon (e.g., icon 212 , FIG. 2), and specifying the desired alignment. Alternatively, the developer could change a display format by manipulating the component properties field 230 (FIG. 2). The method then returns to step 514 to wait for additional developer input.
  • an alignment icon e.g., icon 212 , FIG. 2
  • step 516 When the developer input indicates, in step 516 , that the developer wishes to delete a particular field of a table from the Web page, then the tool removes the component from the display page, in step 520 , and the component's associated source code is deleted from the page document in step 522 .
  • steps 516 When the developer input indicates, in step 516 , that the developer wishes to delete a particular field of a table from the Web page, then the tool removes the component from the display page, in step 520 , and the component's associated source code is deleted from the page document in step 522 .
  • steps 350 , 352 of FIG. 3 The method then returns to step 514 to wait for additional developer input.
  • the tool modifies the component code for the particular field to reflect the corresponding constraint in step 524 .
  • the developer could specify that the component should only display data items having a first letter of “A”. This constraint would be added to the component code and, upon execution, the component would only display table entries having the first letter of “A”. The method then returns to step 514 to wait for additional developer input.
  • step 516 When the developer input indicates, in step 516 , that the developer is done editing the component code for the field (or fields) is incorporated into the page document in step 526 , and the process ends.
  • FIG. 6 illustrates a simplified hardware block diagram of a Web page development computer 110 in accordance with a preferred embodiment of the present invention.
  • Web page development computer 110 could be, for example, a SUN workstation or another desktop or laptop personal computer.
  • computer 110 includes processor means 612 , user input means 614 , data storage means 616 , and monitor 618 .
  • computer 110 includes encryption means 620 and/or communication hardware 622 , although these two elements are not essential to achieve many of the advantages of the present invention.
  • Processor means 612 could be, for example, an Intel Pentium processor or other processor suitable for performing the processing functions of Web page development computer 110 . These processing functions are described in detail in conjunction with FIGS. 3 and 5, but include, for example, initializing the page development tool (step 301 , FIG. 3), creating or accessing a page document (steps 306 , 310 , FIG. 3), placing a selected component on or removing a selected component from a page (steps 320 , 350 , FIG. 3), editing component properties (step 358 , FIG. 3), editing component code (step 342 , FIG. 3), and storing/deploying pages (steps 360 - 368 , FIG. 3).
  • initializing the page development tool step 301 , FIG. 3
  • creating or accessing a page document steps 306 , 310 , FIG. 3
  • placing a selected component on or removing a selected component from a page steps 320 , 350 , FIG. 3
  • editing component properties step 358 , FIG. 3
  • User input means 614 is coupled to processor means 612 , either directly or through various hardware and interfaces.
  • User input means 614 could be, for example, a keyboard, mouse, microphone, speaker, digital video device, or any combination thereof.
  • User input means 614 is the way in which a developer gives commands and/or information to the page development tool. Such commands could include, for example, a command to initialize the tool (step 301 , FIG. 3), drag and drop a new component, edit a component property, edit component source code, delete a component, save a page document, quit the page development tool, or deploy a page.
  • Data storage means 616 is coupled to processor means 612 , either directly or through various hardware and interfaces.
  • Data storage means 616 is used to store the Web page development tool code, page documents, source and executable code for components, and other data items.
  • Data storage means 616 could include any type of read only memory (ROM) and/or random access memory (RAM), and could be in the form of magnetic or optical storage medium, such as, for example, hard drives, compact disks, magnetic disks, or any combination thereof.
  • ROM read only memory
  • RAM random access memory
  • magnetic or optical storage medium such as, for example, hard drives, compact disks, magnetic disks, or any combination thereof.
  • only one data storage means 616 is shown. It would be obvious to one of skill in the art, however, that several types of storage would be desirable in order to carry out the method of the present invention.
  • Monitor 618 is coupled to processor means 612 , either directly or through various hardware and interfaces. Monitor 618 is used to display screens associated with the Web page development tool, including, for example, page editor displays (e.g., display 200 , FIG. 2) and code editor screens (e.g., screen 400 , FIG. 4). Monitor 618 is the primary mechanism for providing visual feedback to the developer during a page-development session, although other means of feedback (e.g., a speaker) also could be used.
  • page editor displays e.g., display 200 , FIG. 2
  • code editor screens e.g., screen 400 , FIG. 4
  • Monitor 618 is the primary mechanism for providing visual feedback to the developer during a page-development session, although other means of feedback (e.g., a speaker) also could be used.
  • encryption means 620 is coupled to processor means 612 , either directly or through various hardware and interfaces. In an alternate embodiment, encryption means 620 is coupled to communication hardware 622 . Encryption means 620 is used in a preferred embodiment to encrypt messages, page documents, and/or other information prior to transmission via communication hardware 622 . Encryption means 620 also is used in a preferred embodiment to decrypt messages and/or other information received via communication hardware 622 . Encryption means 620 could use, for example, nearly any approved encryption algorithm, including public key/private key algorithms, scrambling, or another proprietary algorithm. Encryption means 620 is not essential to the method and apparatus of the present invention, but it provides an enhanced measure of information security.
  • communication hardware 622 is coupled to processor means 612 and/or encryption means 620 , either directly or through various hardware and interfaces.
  • Communication hardware 622 can be, for example, a modem used to modulate or demodulate information transmitted or received, respectively, over an external link. Such information could be in encrypted or unencrypted form.
  • communication hardware 622 could be a network card, USB, or other communication device.
  • processor means 612 Although only one processor means 612 , user input means 614 , and data storage means 616 are shown, any number of processors, user input means, and data storage devices could be used in conjunction with Web page development computer 110 .
  • steps 362 - 368 after creation of a Web page by Web page development computer 110 , a developer may then request that computer 110 “deploy” the new Web page.
  • “Deployment” of a Web page refers to the act of sending the page to a server which will then provide access to the page to client computers via the Internet.
  • Web page development computer may send the Web page to the server via the Internet, a LAN, a WAN, any other type of optical, wireless, or wired link (or links), or via a tangible data storage medium.
  • FIG. 7 illustrates a flowchart of a method for receiving, storing, and delivering Web pages in accordance with a preferred embodiment of the present invention.
  • the method is performed on a computer such as server-side computer 140 (FIG. 1 ).
  • the method begins, in step 702 , when the server-side computer receives one or more Web pages.
  • these Web pages are received from a computer, such as Web page development computer 110 (FIG. 1), over the Internet or some other link.
  • the received Web pages could be in an encrypted or unencrypted form.
  • the server-side computer stores the received Web pages for later access.
  • server-side computer stores the page in the encrypted form.
  • server-side computer could decrypt the Web page before storing it.
  • a particular Web page could be stored for any length of time before a client requests that the page be sent to the client computer.
  • servers often store databases which can be accessed by a Web page application. Requests for Web pages or data come in the form of client messages that may or may not be encrypted.
  • step 706 when server-side computer receives a client request for data or a request for a Web page, server-side computer decrypts the request, if necessary.
  • Authorization may be necessary for either or both the user and the server.
  • user authorization is performed on the client computer by the Web page which invokes the request for data or another Web page. Such an approach is desirable because it eliminates the need to send authorization messages back and forth between the client and the server.
  • authorization step 708 refers to server authorization in accordance with the preferred embodiment. If necessary, such authorization could be performed for the user as well.
  • FIG. 8 illustrates a flowchart of a method for controlling access to a Web page or data in accordance with a preferred embodiment of the present invention.
  • the method begins, in step 802 , by determining whether the requested page or data is “secure,” or requires access authorization. If not, then it is determined that access is approved in step 810 and the procedure ends.
  • step 804 access information is requested. If the server must provide access information, the server could send its authorization information (e.g., a password) to the database manager who controls access to the data or page. The database manager would then compare, in step 806 , the access information with an access list or, in the case of user authorization, a user profile list.
  • authorization information e.g., a password
  • step 808 A determination is then made, in step 808 , whether or not the server (or user) is authorized to access the data based on the comparison made in step 806 . If so, then it is determined that access is approved in step 810 and the procedure ends. If not, then it is determined that access is denied in step 812 and the procedure ends.
  • step 708 if, in step 708 , it is determined that access is denied (either to the user or to the server), then server-side computer sends an access denied message to the client computer in step 710 and the program iterates as shown in FIG. 7.
  • server-side computer determines that access authorization is not necessary or that access is allowed, then server-side computer retrieves the requested page and/or data in step 714 .
  • server-side computer sends the page and/or data (either in encrypted or unencrypted form) to the client-side computer. The program then iterates as shown in FIG. 7.
  • FIG. 9 illustrates a simplified hardware block diagram of a server-side computer 140 in accordance with a preferred embodiment of the present invention.
  • Server-side computer 140 computer could be, for example, a SUN workstation or another desktop or laptop personal computer.
  • server-side computer 140 includes first communication hardware 910 , processor means 912 , and data storage means 914 .
  • computer 140 includes encryption/decryption means 920 and second communication hardware 930 , although these two elements are not essential to achieve many of the advantages of the present invention.
  • Processor means 912 could be, for example, an Intel Pentium processor or other processor suitable for performing the processing functions of server-side computer 140 . These processing functions are described in detail in conjunction with FIG. 7, but include, for example, receiving and storing Web pages (steps 702 , 704 ), processing client requests (step 706 ), determining access rights (step 708 ), and retrieving and sending pages and data (step 716 ).
  • Data storage means 914 is coupled to processor means 912 , either directly or through various hardware and interfaces.
  • Data storage means 914 is used to store Web pages, either encrypted or unencrypted, messages, and databases. Often, however, databases are stored remotely and are accessible to a server via a database manager.
  • Data storage means 914 could include any type of read only memory (ROM) and/or random access memory (RAM), and could be in the form of magnetic or optical storage medium, such as, for example, hard drives, compact disks, or magnetic disks. For ease of illustration, only one data storage means 914 is shown. It would be obvious to one of skill in the art, however, that several types of storage may be desirable in order to carry out the method of the present invention.
  • encryption/decryption means 920 is coupled to processor means 912 , either directly or through various hardware and interfaces. In an alternate embodiment, encryption/decryption means 920 is coupled to first communication hardware 910 and/or second communication hardware 930 . Encryption/decryption means 920 is used in a preferred embodiment to encrypt messages, data, Web pages, and/or other information prior to transmission via first or second communication hardware 910 , 930 . Encryption/decryption means 920 also is used in a preferred embodiment to decrypt messages and/or other information received via first or second communication hardware 922 , 924 .
  • Encryption/decryption means 920 could use, for example, nearly any approved encryption algorithm, including public key/private key algorithms, scrambling, or another proprietary algorithm. Encryption/decryption means 920 is not essential to the method and apparatus of the present invention, but it provides an enhanced measure of information security.
  • first communication hardware 910 and second communication hardware 930 are coupled to processor means 912 and/or encryption/decryption means 920 , either directly or through various hardware and interfaces.
  • First communication hardware 910 could be, for example, a modern used to modulate or demodulate information transmitted or received, respectively, over an external link with a computer such as Web page development computer 110 (FIG. 1).
  • Second communication hardware 930 also could be, for example, a modem used to modulate or demodulate information transmitted or received, respectively, over an external link with a computer such as client-side computer 170 (FIG. 1). Such information could be transmitted or received in encrypted or unencrypted form.
  • Communication hardware 910 , 930 alternatively could be network cards, USBs, or other communication devices.
  • computer 140 could include only a single communication hardware device which communicates with both Web page development computers and client-side computers.
  • computer 140 could include a bank of communication hardware and/or modems for communicating with multiple other computers.
  • processor means 912 data storage means 914 , and first and second communication hardware 910 , 930 are shown, any number of processors, data storage devices, and communication hardware could be used in conjunction with server-side computer 140 .
  • FIG. 10 illustrates a flowchart of a method for requesting, receiving, and displaying a Web page in accordance with a preferred embodiment of the present invention.
  • the method is performed on a computer such as client-side computer 170 (FIG. 1).
  • the method begins, in step 1002 , when an initialize browser command is received from a user of client-side computer 170 .
  • the initialize browser command indicates that the user wants to open the browser associated with the method and apparatus of the present invention.
  • step 1004 the browser is initialized and it creates and sends a request for the main Web page associated with the browser.
  • the request is encrypted, although this is not essential for the method and apparatus of the present invention.
  • the browser then waits to receive the main page from the server. If it is not received within a certain timeout period, the browser can display a timeout message to the user and can terminate.
  • step 1006 the page is decrypted, if necessary, and displayed on the user monitor.
  • the client-side computer maintains the display until user input or a page command is received, in step 1008 .
  • User input could take the form of input from a keyboard, a mouse click, or an audio command, for example.
  • a page command would be a command from an active Web page to perform some function.
  • step 1010 a determination is made, in step 1010 , what type of input has been received.
  • the following types of user inputs and page commands are possible: 1) a page has been requested; or 2) data has been requested; or 3) some non-page/non-data request has been made; or 4) the user has requested that a page/data be briefcased; or 5) the user wishes to quit.
  • Each of the user inputs and page commands is described below.
  • the flowchart includes steps and decisions only relevant to receiving, displaying, and storing a Web page and/or data. It does not contemplate all possible user inputs and page commands. In alternate embodiments, additional or different user inputs and page commands are possible.
  • step 1012 a determination is made, in step 1012 , whether the user has access rights.
  • the access rights determination is made, in a preferred embodiment, by the Web page from which the user requested access to a new page.
  • the Web page includes code that enables it to determine whether or not the user is authorized to access the requested Web page.
  • Checking user access privileges could, for example, require the user to input a password or some other information, and the password could be checked with information stored within the page document.
  • Such an access determination could be made by an algorithm similar to that described in detail in conjunction with FIG. 8, for example, except that all steps would be performed on the client-side computer. In alternate embodiments, access rights could be determined through some other method.
  • step 1012 If a determination is made, in step 1012 , that access is denied, then an access denied message is sent to the user in step 1014 (e.g., by displaying the message on the monitor). If access is approved, then the Web page formulates the page request and sends it to the appropriate server in step 1016 .
  • the appropriate server could be a remote server or, in some cases, could be a local server.
  • the client computer decrypts the page, if necessary, and displays the Web page on the monitor in step 1018 .
  • the Web page then becomes “active,” and certain portions of component code could execute. If the Web page includes data components, then the page could request the first set of data to be displayed within those data components. If, as indicated in step 1020 , the Web page does not include data components, then the method returns to step 1008 to wait for additional user input. If the Web page does include data components, then the method determines, in step 1021 , whether that data is locally stored. If not, then the method executes steps 1026 - 1034 which are necessary for the Web page to request the appropriate data.
  • step 1021 the method determines that the data is locally stored, then the method executes steps 1028 - 1034 .
  • the appropriate server in step 1030 would be the local server, rather than a remote server. Steps 1026 - 1034 are discussed in detail below.
  • a page could be requested without performing steps 1002 - 1010 .
  • a user could invoke a Web page created in accordance with a preferred embodiment by typing the page's URL into a browser.
  • Such browser could be the browser in accordance with the present invention, or could be a prior art browser. If a page is accessed directly, it may be necessary for the server to perform access authorization, since the page was not invoked by another page having knowledge of user access rights. Alternatively, the page could perform access authorization upon being downloaded to the client computer.
  • step 1022 a determination is made, in step 1022 , whether the data is stored locally.
  • the data may be stored locally, for example, if the data had been previously obtained from the server and stored on the client machine. For example, the user may have downloaded several sets of data during an interaction with a particular page. The user may then want to scroll backwards into data that the user previously downloaded. Alternatively, the user may have briefcased a page and a set of data and may want to view the briefcased data. In any event, if the data is locally stored, then the data is located and displayed, in step 1024 , by the client computer.
  • step 1026 a determination is made, in step 1026 , whether the user has access rights. This determination could be made in a manner similar to step 1012 , except that the access rights would pertain to access to data, rather than access to a page. If the user does not have access rights, then an access denied message is sent to the user in step 1014 and the procedure iterates as shown.
  • Step 1028 could also be invoked, as previously described, when a Web page automatically determines that it needs to request a set of data (step 1020 ).
  • the data criteria identify the database, table, and record (or records) which the user or Web page would like to view.
  • the particular record to be viewed is identified by evaluating state variables stored by the Web page. These state variables indicate which records the page has already accessed, and which records would be next.
  • Storage of state variables by the Web page represents a significant advantage to the method of the present invention.
  • Such storage eliminates the need to have intelligence at the server to maintain state information (e.g., “agents”), and also eliminates the need to maintain a persistent connection with the server during the entire database access session.
  • state information e.g., “agents”
  • maintenance of state variables at the Web page results in reduced server complication and also in lower bandwidth demands, among other advantages.
  • a data request is formulated and the request is sent to the appropriate server in step 1030 .
  • the appropriate server could be a remote server or, in some cases, could be a local server.
  • the request is encrypted before it is sent, although this is not essential.
  • the requested data is received, in step 1032 , and displayed within the appropriate data component (or components).
  • the state variables associated with the data are updated to reflect the fact that the user has advanced further within the database (or to different records within the database). The method then returns to step 1008 to wait for additional user input.
  • Non-page and non-data requests could include, for example, a request to use a hyperlink to another Web site, a request to run an audio or video file, a request to send an e-mail, or many other types of requests.
  • step 1010 If, in step 1010 , it is determined that the user has requested that a page and/or data be briefcased, then a determination is made, in step 1038 , whether the page and/or data is storable. In a preferred embodiment, this determination is made by the Web page through execution of code that a developer included within the Web page (as discussed in conjunction with FIG. 3, step 342 ). The determination of whether a page and/or data is storable also could include an access rights determination.
  • step 1040 If it is determined that the page and/or data is storable, then the page document, data which has been downloaded in conjunction with the page, and the current state variables are stored on the client computer in step 1040 . Storage of the state variables is desired so that, when a user decides to re-invoke the page, the user can begin accessing data where the user previously left off. If step 1041 indicates that the developer wanted to quit, then the method branches to step 1050 . If, in step 1050 , a determination is made that the developer wants to close the browser, then the browser is closed and the method ends. Otherwise, the method branches to step 1002 . If step 1041 indicates that the developer did not want to quit, the method then returns to step 1008 to wait for additional user input.
  • step 1038 If, in step 1038 , it is determined that the page and/or data is not storable, then the user is so notified, in step 1042 . If step 1043 indicates that the developer wanted to quit, then the page document, data, and state variables are deleted in step 1044 . The method then returns to step 1008 to wait for additional user input. If step 1043 indicates that the developer did not want to quit, then the method returns to step 1008 to wait for additional user input.
  • step 1010 If, in step 1010 , it is determined that the user would like to quit, then, in a preferred embodiment, the user is asked whether he would like to briefcase the page and/or data. If the user indicates that he would like to briefcase the page and/or data, then steps 1038 - 1044 are performed. If the user indicates that he would not like to briefcase the page and/or data, then the page document, data, and state variables are deleted, in step 1048 , and a determination is made, in step 1050 , whether the developer wants to close the browser. If so, the browser is closed and the method then ends. If not, then the method branches to step 1002 and continues.
  • One advantage to the present invention is that the browser associated with the Web pages of the preferred embodiment can be much smaller than prior-art Web pages.
  • each Web page developed in accordance with the present invention is capable of communicating directly with remote servers.
  • Prior art Web pages rely on prior art browsers to relay messages back and forth from the server.
  • the Web pages of the present invention do not. Therefore, it is possible to close the browser of the present invention during an interactive session between a Web page and a server.
  • a Web page created in accordance with the present invention could request that the browser be closed upon invocation of the page.
  • FIG. 11 illustrates a flowchart of a method for posting modified data to a remote database in accordance with a preferred embodiment of the present invention.
  • the method begins, in step 1102 , when the user initializes the browser. Browser initialization was discussed in more detail in conjunction with FIG. 10, step 1002 . Once the browser is initialized, then the user can cause the locally-stored Web page and data to be loaded and displayed in step 1104 . At this stage, the user could perform additional edits, if desired.
  • the page determines whether the user has access rights to make such changes to the database in step 1106 . Access rights determination could be made, for example, in a manner similar to FIG. 10, step 1026 .
  • the developer could incorporate code into the Web page which indicates who has data modification privileges, as discussed previously in conjunction with FIG. 3, step 342 . If the user does not have access rights, then an access denied message is sent to the user in step 1108 and the procedure ends.
  • the page in step 1110 , formulates a message which identifies the database and table, and which also includes the old data records (i.e., the data which was originally downloaded from the server) and the modified data records.
  • the server determines, in step 1112 , whether the server has access rights to modify the data within the database. If not, then the server sends an access denied message to the client computer, in step 1114 , and the procedure ends.
  • step 1116 the server compares the old records received from the client computer with the records currently existing in the database. A determination is made, in step 1118 , whether the old records and existing records match. If they do not match, it indicates that the database has been modified by another user since the current user downloaded the data. In such a case, the server sends the existing records back to the client computer, in step 1120 , so that the client computer can query the user as to whether he actually wants to modify the database. If the user indicates, in step 1122 , that the replacement is not desired, then the procedure ends.
  • steps 112 - 124 may require the server to interact with a database manager associated with the database.
  • FIG. 12 illustrates a simplified hardware block diagram of a client-side computer 170 in accordance with a preferred embodiment of the present invention.
  • Client-side computer 170 could be, for example, a SUN workstation or another desktop or laptop personal computer.
  • client-side computer 170 includes processor means 1212 , user input means 1214 , data storage means 1216 , communication hardware 1222 , and monitor 1218 .
  • computer 170 includes encryption/decryption means 1220 , although this element is not essential to achieve many of the advantages of the present invention.
  • Processor means 1212 could be, for example, an Intel Pentium processor or other processor suitable for performing the processing functions of client-side computer 170 . These processing functions are described in detail in conjunction with FIG. 10, but include, for example, initializing the browser (step 1002 , FIG. 10), requesting the main page (step 1004 , FIG. 10), requesting additional pages (steps 1012 - 1020 , FIG. 10), requesting data (steps 1022 - 1034 , FIG. 10), and briefcasing pages and data (steps 1038 - 1044 , FIG. 10).
  • User input means 1214 is coupled to processor means 1212 , either directly or through various hardware and interfaces.
  • User input means 1214 could be, for example, a keyboard, mouse, microphone, digital video device, or any combination thereof.
  • User input means 1214 is the way in which a user gives commands to the browser.
  • Data storage means 1216 is coupled to processor means 1212 , either directly or through various hardware and interfaces. Data storage means 1216 is used to store the browser, page documents, data from remote databases, and other data items. Data storage means 1216 could include any type of read only memory (ROM) and/or random access memory (RAM), and could be in the form of magnetic or optical storage medium, such as, for example, hard drives, compact disks, and magnetic disks. For ease of illustration, only one data storage means 1216 is shown. It would be obvious to one of skill in the art, however, that several types of storage would be desirable in order to carry out the method of the present invention.
  • ROM read only memory
  • RAM random access memory
  • Monitor 1218 is coupled to processor means 1212 , either directly or through various hardware and interfaces. Monitor 1218 is used to display Web pages to the user.
  • encryption/decryption means 1220 is coupled to processor means 1212 , either directly or through various hardware and interfaces. In an alternate embodiment, encryption/decryption means 1220 is coupled to communication hardware 1222 . Encryption/decryption means 1220 is used in a preferred embodiment to encrypt messages, requests, and/or other information prior to transmission via communication hardware 1222 . Encryption/decryption means 1220 also is used in a preferred embodiment to decrypt messages, Web pages, and/or other information received via communication hardware 1222 . Encryption/decryption means 1220 could use, for example, nearly any approved encryption algorithm, including public key/private key algorithms, scrambling, or another proprietary algorithm. Encryption means 1220 is not essential to the method and apparatus of the present invention, but it provides an enhanced measure of information security.
  • communication hardware 1222 is coupled to processor means 1212 and/or encryption/decryption means 1220 , either directly or through various hardware and interfaces.
  • Communication hardware 1222 could be, for example, a modem used to modulate or demodulate information transmitted or received, respectively, over an external link. Such information could be in encrypted or unencrypted form.
  • communication hardware 1222 could be a network card, USB, or other communication device.
  • processor means 1212 Although only one processor means 1212 , user input means 1214 , and data storage means 1216 are shown, any number of processors, user input devices, and data storage devices could be used in conjunction with client-side computer 170 .
  • the method and apparatus of the present invention provide the advantage of enabling a user to browse data on a first open page while the data on a second open page is automatically updated. Creation of pages having linked components from the developer perspective was described in detail in conjunction with FIG. 3, steps 330 - 336 . Data linking is now described from the client-side computer perspective.
  • multi-page data linking refers to the linking of various data sets across multiple Web pages.
  • a first Web page may include a component containing data through which the user can scroll.
  • the user may then open a second Web page which contains a component containing data which is related to, but different from, the data displayed by the first page.
  • these two pages are linked in such a way that, when the user opens the second page, the data displayed therein will correspond to the data displayed in the first page.
  • the other page will automatically update itself to display the corresponding data.
  • a first Web page permits access to certain employee information which is stored in an employee information database accessible to a server.
  • the database could be a relational database, where unique employee numbers are the keys used to link records of the various tables together.
  • the database could include the employee number and multiple types of information such as:
  • job-related information including supervisor name, secretary name, office location, work phone and fax numbers, and job title;
  • c) personal information including name, social security number, home address and telephone number, marital status, gender, and age.
  • a first Web page includes a component for displaying the employee name, along with the first type of employee information, namely job-related information.
  • the user's client-side computer would send a request to the appropriate server for the job-related information for that employee.
  • the server-side computer would retrieve that information from the employee information database and send the information back to the client-side computer.
  • the client-side computer would then display the information in the first Web page's data component or components corresponding to the information, and would update the state variables which identify what record of the database the user has accessed.
  • the client-side computer would send a request to the server for the same employee's personnel-related information without requiring the user to input the employee name again.
  • the server would access and send the appropriate personnel-related information, which would be displayed on the second page.
  • the method of the present invention would cause the data on both the first and second Web pages to be updated automatically to reflect the job-related and personnel-related information for the second employee. In this manner, the data between the two Web pages is linked. When the data is updated on the first page, the related data is also updated on the second page.
  • FIG. 13 illustrates a flowchart of a method for multi-page data linking in accordance with a preferred embodiment of the present invention.
  • the method is performed on a computer such as client-side computer 170 , FIG. 1.
  • the method begins, in step 1302 , by displaying a first page and an associated first data set.
  • the first page will be considered the Master page, as that term has been previously defined.
  • Step 1302 presumes that no access restrictions exist or the user has access approval to display the first page and/or first data set.
  • state variables identifying the first data set are stored.
  • the first data set could include an employee's job-related information.
  • a user request is received to display a second page having a second set of related data.
  • the second page will be considered the Detail page, as that term has been previously defined.
  • the second data set could include an employee's personnel-related or personal information.
  • the second page is received, in step 1310 , and after it becomes active, the state variables associated with the first page are used to formulate a request for the second-page data in step 1312 .
  • the second-page data request is sent to the server, in step 1314 , and the second-page data is received, in step 1316 . If the second page includes data components which are unrelated to the first-page data, then state variables for those new data components may also need to be initialized.
  • step 1318 the second page and second-page data is displayed by the client-side computer. In an alternate embodiment, the second page could be displayed prior to step 1318 .
  • steps 1306 - 1318 are repeated. If the user requests additional data on any one of the pages (e.g., data for another employee), then the related state variables are used to formulate the data request for each page having related data and, once the data is received from the server, the corresponding data components for each page are updated.
  • related data e.g., a page which displays the employee's personal information
  • steps 1306 - 1318 are repeated. If the user requests additional data on any one of the pages (e.g., data for another employee), then the related state variables are used to formulate the data request for each page having related data and, once the data is received from the server, the corresponding data components for each page are updated.
  • a particular Web page in accordance with the present invention may have requested and stored multiple data records (e.g., information for multiple employees), even though the page displays information contained in only one or a few such records.
  • the related data for the multiple data records could be requested from the server and stored, and the second page also could display information contained in only one or a few such records.
  • step 1312 - 1316 the client-side computer would access and display the previously-stored data for each of the pages.
  • Server requests for data are necessary only when a Web page (or pages) want access to data which they have not downloaded and maintained.
  • state variables need to be updated only when new sets of data are received from the server.
  • FIG. 14 illustrates an exemplary linked Web page display in accordance with a preferred embodiment of the present invention.
  • a browser display 1405 is associated with a browser which is initially used to gain access to a server-side computer and to display an initial Web page. In accordance with the present invention, the browser may thereafter be closed, at the user's option, as the browser is not essential for a user to interact with Web pages which were designed in accordance with the present invention.
  • a first page 1410 and a second page 1420 each display particular items of related data. In the example shown, first page 1410 displays data for customer number 1412 , company 1414 , and other information for that particular customer number. Second page 1420 also displays customer number 1422 and company 1424 , but also displays different, but related information, specifically the history of customer sales 1426 .
  • the method of the present invention used the state variables identifying the first page data to formulate a request for the customer sales data 1426 . Also in a preferred embodiment, if the user changed the customer number 1412 or 1422 in either first page 1410 or second page 1420 , the method of the present invention would update the company data 1414 , 1424 , customer sales 1426 , and other related data displayed by both pages 1410 and 1420.
  • FIG. 15 illustrates a flowchart of a method for scrolling through data in association with linked pages in accordance with a preferred embodiment of the present invention.
  • the method is performed on a computer such as client-side computer 170 , FIG. 1.
  • one of the linked pages receives user input indicating that the user would like to display a different set of data within one or more components on that page.
  • a determination is made, in step 1504 , whether the requested data is currently stored on the client machine. For example, a client machine may have received and stored only the first twenty records of employee personal data in response to one or more previous requests to the server. In a preferred embodiment, those twenty records would be stored on the client machine and the user would be able to scroll through them without initiating another request to the server. Following the same example, if the user attempts to scroll to the twenty-first record, the Web document would need to formulate another request for data and send that request to the server in a preferred embodiment.
  • step 1504 While scrolling through the first twenty records, step 1504 would determine that the data is stored locally. If a request for data other than that which is contained within the first twenty records is received, step 1504 would determine that the data is not stored locally. If step 1504 determines that the data is stored locally, then the data is retrieved and displayed in step 1506 .
  • step 1504 determines that the data is not stored locally, then a determination is made, in step 1508 , whether the data is being scrolled in a linked page component. If the data is being scrolled in a linked page component, then, in step 1510 , the first page sends a request to the linked page which obtains data from the server for the first page, where the request indicates which data the first page would like to view.
  • the client machine creates a request for the data displayed by both the first and linked pages using the state variables.
  • the client machine then sends the request to the server in step 1514 .
  • the page which requested the data from the server sends the data to the page which displays that data, and that page displays the data in step 1518 .
  • the state variables affected by the new data are then updated in step 1520 , and the procedure iterates as shown.
  • One advantage to the method and apparatus of the present invention is that, during database applications, they do not require an entire page to be dynamically generated at the server each time a user requests a new set of data. Instead, in accordance with the present invention, the server only sends the new piece of data and the Web page updates the appropriate field
  • An additional advantage is that the method and apparatus of the present invention enable state management to be performed by the client-side computer by utilizing code embedded within a Web page. This state management capability also enables the method and apparatus of the present invention to provide Web page briefcasing, an additional advantage of the present invention.
  • the embedded Web page code of the method and apparatus of the present invention greatly reduce security risks associated with prior-art downloaded executables which could contain malicious code.
  • Another advantage of the present invention is that it enables a Web-page users to view and interact with multiple linked pages simultaneously, without launching another instance of the Web browser.

Abstract

A system and method for Web page development, deployment, download, and execution include and utilize a Web page development computer (110), a server computer (140), and a client computer (170). Development computer initializes (301) a page development tool which a developer uses to create a Web page document by placing components (320) on a Web page (220), whereupon the tool incorporates (324) executable code into the Web page document. Server computer stores the Web page document and, upon client computer request, retrieves (714) and sends (716) the Web page document to client computer. Client computer receives the Web page document and displays the corresponding Web page. If the Web page includes a database-related component, client computer requests (1030) data from server computer. After receiving (1032) the corresponding data, the data is displayed (1032) within the database-related component, and state variables are stored (1034) for later use.

Description

    FIELD OF THE INVENTION
  • The present invention relates generally to database access over the Internet and, more particularly, to Web page development, deployment, and execution conducive to database access and manipulation over the Internet. [0001]
  • BACKGROUND OF THE INVENTION
  • The World Wide Web, commonly referred to as the “Web,” has become a valuable Internet resource for business, scientific, and personal research and promotion. Individuals and businesses alike create and post Web pages containing all types of information. The files defining such Web pages are typically stored on a “server” computer which is accessible to “client” computers via the Internet or some other network. Once associated with a server, a Web page can be accessed and viewed on a client computer using commercially-available Web browsers, such as Netscape Navigator and Microsoft Explorer. [0002]
  • As the Web has become more popular, Web pages have become more complex and businesses have asked Web page developers to provide more and more information display capabilities. One such capability, which has become a highly-desirable Web application, is the capability to remotely access and manipulate data. For example, a company may want its sales personnel to have Internet access to the company's databases while those sales personnel are in the field. As is described in detail below, prior art systems struggle with Internet database applications, specifically in the areas of efficiency, security, state management, and data “briefcasing.”[0003]
  • As used herein, a “database” refers to a collection of information organized in tables and stored on a server computer or accessible to a server computer via a database manager. A “table” refers to a collection of data which organizes similar things together. For example, in a company database, one table might keep track of employee information and another table might keep track of sales activities. Every table contains columns and rows. For the purposes of this description, a column defines what type of information is gathered (e.g., name, hire date, salary) and a row stores that information (e.g., a row exists for each salesperson). A row of data is also referred to herein as a “record,” and a column of data is referred to herein as a “field.” A “relational database” is a database having multiple tables whose records are linked together by keys. [0004]
  • Early in the Web's history, the HyperText Markup Language, commonly referred to as “HTML,” was developed. HTML is a language that describes a Web page, and it is interpretable by virtually all commercially-available Web browsers. [0005]
  • One disadvantage to using an HTML document for database access applications is that HTML document based access is very inefficient. If an HTML document is being used to display information from a database lookup, then each time the user requests a different set of data, the server must invoke a “Common Gateway Interface” Or “CGI” script which interacts with the database manager to obtain the data. Then the server must send all information on the page to the browser. Even though the information in only a single field is different (i.e., the field containing the new set of data), all static and unmodified page information must also be downloaded. This HTML limitation leads to slow and inefficient database access. In addition, the CGI scripts add a layer of processing between the server and the database, thus adding a level of inefficiency to the system. [0006]
  • Another problem with using pure HTML documents for database applications springs from the interactive nature of such applications. Database access is considered an interactive Web application because it often requires a client computer to interchange many messages with a server. This is particularly true when a user wants to access, via a Web page, a large number of records within a database table. [0007]
  • HTML was developed primarily as a language to enable text displays, and it is not well-suited to interactive applications, including database access and manipulation applications. Therefore, many Web pages, including database-oriented Web pages, have added Java, JavaScript, and ActiveX controls to their HTML documents in order to provide better interactive capabilities. Unfortunately, however, the use of Java, JavaScript, and Active X controls pose serious security problems to the integrity of computers and computer networks. [0008]
  • Java is a programming language which is specially adapted to support the development of Internet applications. Java enables an application designer to transport objects across the Internet, hence enabling database access. During an interactive session with a Web page, Java, JavaScript, and Active X operate similarly. In the interests of brevity, only Java is discussed, although the security problems pertaining to Java exist also with JavaScript and ActiveX. [0009]
  • A Java “applet” is a Java program specifically designed for incorporation by an HTML document. Rather than including the actual applet code within an HTML document, “canned” applet code is often downloaded from somewhere else on the Web and then executed on the client machine. Such an applet is referred to generically as a “downloaded executable.” In order to download an applet, an HTML document would include, among other things, the Uniform Resource Locator, or “URL,” identifying the location of the applet on the Web. For example, an HTML document could invoke an applet called “Clock” stored at http://java.sun.com/openstudio/index.html. During operation of a Web page which invokes that applet, compiled “Clock” applet code is dowvnloaded from “java.sun.com” to the client machine. The client's browser then executes the applet on the client machine. [0010]
  • One enormous problem which faces Web page users is the security risks created by allowing downloaded executables to be run on the client machine. The Java applet is a major culprit, although similar security problems exist with JavaScript and ActiveX. Java applets, which can be downloaded from anywhere, may include “malicious” code. Upon execution of the downloaded applet, such applet could, for example, perform unauthorized file operations on the client machine. [0011]
  • Several solutions have been developed to deal with the threat of the malicious Java applet, but none have yet proved to be efficient and foolproof. For example, Finjan Software has developed the “SurfinShield Xtra” tool which, when a browser attempts to download an applet or control, scans the item in a fashion similar to an antivirus program. Unfortunately, many Web pages include numerous applets, and the scanning operation can substantially increase the time necessary to download and display a page. In addition, any antivirus-type tool is only as good as the level of ingenuity of the malicious-code creators at the time the antivirus tool is released. Therefore, it is likely that a user would need to update its antivirus-type software on a regular basis. [0012]
  • Microsoft recently released a similar antivirus-like solution called “Dynamic HTML,” or “DHTML,” which is intended to replace ActiveX. DHTML is more secure than ActiveX because it is interpreted by the browser, which can override the code and prevent system violations. However, as with HTML, DHTML requires a server to dynamically create a Web page each time an update to the page is requested. For example, if a user interacting with a DHTML-generated page requests a new piece of data in a single field within the page, a CGI script would be invoked at the server to regenerate the entire page, even though only one piece of data changed. Thus, DHTML may reduce some security risks, but it requires developers to create server-side CGI scripts, and DHTML also has efficiency problems when used in database applications. [0013]
  • Besides the security risks associated with using downloaded executables within an HTML document, another challenge to providing interactive database access is that the nature of Web communications makes state management difficult. “State management” refers to the maintenance of information which describes the particular state that a program is in. In a database application, state management enables a system to keep track of who is accessing a database, what records that user has accessed, and what records would be next. [0014]
  • To illustrate the Internet-related state management problem, a brief Internet data access scenario is described. When a user's client machine requests, via a Web page, access to an initial set of data accessible to a remote server, the client browser establishes a connection with the remote server, sends a request, receives the requested data (if it is available), and closes the connection. When the client machine requests the next set of data, the browser must re-establish the connection with the remote server and send a new request. However, the remote server views the request in a vacuum and, thus, has no idea that the client previously requested records, what records the client previously requested, or what records would be next for that client. The browser also does not keep track of state information. Therefore, prior art systems did not maintain any state management information or they performed state management in an inefficient manner by allocating resources for each client, hoping the client would come back. The latter approach consumes great amounts of server resources and also limits the number of possible users. [0015]
  • In the Local Area Network (“LAN”) and Wide Area Network (“WAN”) situations, a persistent connection to the server is maintained, thus providing easy access and state management by the server. So, there is never any doubt about which database table a user is connected to, what record of that table the user is currently accessing, what record the user previously accessed, or what record is the next record. In the LAN/WAN situation, it is easy to provide state management for one or more simultaneous users. However, a persistent connection would be inefficient for Internet applications because it would consume too much bandwidth and other system resources. [0016]
  • Because prior-art servers were unable to maintain state information, several applications have been created to provide some semblance of state management in the interest of enabling a user to browse information within a database. One such tool is “IntraBuilder” from Inprise Corporation (a.k.a. Borland International). IntraBuilder is a tool which runs on the server machine. When a new user requests access to a database, the IntraBuilder tool creates an “agent” on the server for that user. The agent is responsible for knowing what user it is associated with and for providing state management for that user. One disadvantage to this agent concept is that hundreds or even thousands of agents could simultaneously exist on a server which provides access to one or more particularly-popular databases. The presence of a substantial number of agents is a burden on the server and limits the server's ability to provide database access. [0017]
  • Another problem originally encountered with the IntraBuilder tool was that the browser had difficulty positioning an active page component (i.e., an element of a Web page which includes data) in the proper place on the page. The browser would independently calculate the component's position. More often than not, the browser-calculated position would be different from the desired position. [0018]
  • In order to alleviate this problem, Netscape apparently modified its browser to recognize the messages coming from the server side when the Web page is posted. That enhanced the Netscape browser's ability to post the information in a relatively close position to the desired position. However, the Netscape modification has not resulted in an optimum solution because it only works for a Web page with a relatively small number of components (e.g., approximately 20). Many Web page designers incorporate numerous components, sometimes in the hundreds. For example, a particular database may have sixty or more fields that a designer would like the page to display. Thus, the Web page would require sixty or more components. The current Netscape browser would be ill equipped to handle such a page. [0019]
  • Another tool for providing database access is “Emrys Visions” from Emrys Solutions, Inc. The Emrys Visions tool is located and runs on the client machine. The Emrys Visions tool also seeks to solve the problem of state management inherent in the make-transfer-break data transfer protocol by forcing the browser to maintain a persistent connection with the server during the entire database browsing session. Although this enables state management to be maintained, a major disadvantage to the Emrys Visions solution is that it forces the client to continuously consume bandwidth, both on the client and server sides. As stated previously, such a persistent connection is undesirable for an Internet application because it consumes substantially more bandwidth than may be necessary. [0020]
  • Another disadvantage to prior-art systems is that they do not adequately provide the ability to “briefcase” data. “Briefcasing” refers to a user's ability to download data from a server to his client machine, manipulate the data offline, re-connect to the server at a later time, and post his changes to the database. The inability to briefcase is related to the inability to maintain state information adequately. In prior-art systems, because of the lack of state management capabilities, the server would have no idea how to reconcile a user's changes with existing records or with changes posted by other users. Although one solution might be to enable a server or database manager to place a lock on the records to prevent other users from making changes after one user downloads those records, such an approach would be impractical in a situation where many users need to manipulate the data. [0021]
  • One additional disadvantage to prior-art systems is that current Web browsers enable a user to jump from page to page, but a single instance of a browser will not display multiple pages simultaneously. Therefore, if a user wants to view multiple pages simultaneously, the user must launch another instance of the Web browser. This consumes additional client computer resources and complicates the user's interaction with the browsers. In addition, no mechanism exists to link the simultaneously displayed pages. The user interacts with each page independently. [0022]
  • What is needed is a way to access data over the Internet which is efficient and provides state management without unduly consuming bandwidth or other server resources. What is further needed is a database access tool which eliminates security risks imposed by malicious code without a reduction in download and display efficiency. What is further needed is a way to provide an Internet-based “briefcasing” capability for database access and modification. What is further needed is a way for Web-page users to view and interact with multiple pages simultaneously, surfacing the relationships of database tables without launching another instance of the Web browser.[0023]
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 illustrates a simplified hardware diagram of a system in accordance with a preferred embodiment of the present invention; [0024]
  • FIG. 2 illustrates a page editor display in accordance with a preferred embodiment of the present invention; [0025]
  • FIG. 3 illustrates a flowchart of a method for creating and deploying a Web page in accordance with a preferred embodiment of the present invention; [0026]
  • FIG. 4 illustrates an exemplary code editor display in accordance with a preferred embodiment of the present invention; [0027]
  • FIG. 5 illustrates a flowchart of a method for adding a database component to a Web page in accordance with a preferred embodiment of the present invention; [0028]
  • FIG. 6 illustrates a simplified hardware block diagram of a Web page development computer in accordance with a preferred embodiment of the present invention; [0029]
  • FIG. 7 illustrates a flowchart of a method for receiving, storing, and delivering Web pages in accordance with a preferred embodiment of the present invention; [0030]
  • FIG. 8 illustrates a flowchart of a method for controlling access to a Web page or data in accordance with a preferred embodiment of the present invention; [0031]
  • FIG. 9 illustrates a simplified hardware block diagram of a server-side computer in accordance with a preferred embodiment of the present invention; [0032]
  • FIG. 10 illustrates a flowchart of a method for requesting, receiving, and displaying a Web page and/or data in accordance with a preferred embodiment of the present invention; [0033]
  • FIG. 11 illustrates a flowchart of a method for posting modified data to a remote database in accordance with a preferred embodiment of the present invention; [0034]
  • FIG. 12 illustrates a simplified hardware block diagram of a client-side computer in accordance with a preferred embodiment of the present invention; [0035]
  • FIG. 13 illustrates a flowchart of a method for multi-page data linking in accordance with a preferred embodiment of the present invention; [0036]
  • FIG. 14 illustrates an exemplary linked Web page display in accordance with a preferred embodiment of the present invention; and [0037]
  • FIG. 15 illustrates a flowchart of a method for scrolling through data in association with linked pages in accordance with a preferred embodiment of the present invention.[0038]
  • DESCRIPTION OF THE PREFERRED EMBODIMENT
  • The method and apparatus of the present invention provides a way to access data over the Internet while providing efficient, accurate state management without unduly consuming bandwidth or other server resources. The method and apparatus of the present invention further provides a way to provide an Internet-based “briefcasing” capability for database access and modification. The method and apparatus of the present invention further provides a database access tool which eliminates security risks imposed by malicious code without a reduction in download and display efficiency. [0039]
  • In a preferred embodiment, the method and apparatus of the present invention include a Web page development tool which enables a developer to create a Web page document which includes executable code, thus eliminating the need to download foreign executables during display and manipulation of a page. This virtually eliminates the risk that malicious code will be downloaded and allowed to wreak havoc on the client machine. [0040]
  • The pages developed in accordance with a preferred embodiment are particularly adept at handling database access and manipulation, in part because the client machine performs the state management tasks. This reduces the load on the server to maintain numerous “agents” and also eliminates the need to maintain a persistent connection during a user's database access session. Finally, it enables a user easily to “briefcase” data, edit it offline, and reconcile the modified data with the database entries at a later date. [0041]
  • In a preferred embodiment, the method and apparatus of the present invention utilize a modified version of a commonly known, object-oriented software language in order to provide a very short learning curve and a likelihood that most platforms will support the language. In a preferred embodiment, the language is object oriented Pascal with some extensions, although other languages also could be used such as, for example, C++. [0042]
  • Finally, a preferred embodiment of the method and apparatus of the present invention provides encryption and decryption to increase the security of the system. In a preferred embodiment, such encryption and decryption is performed on Web pages, data requests, and data messages. [0043]
  • FIG. 1 illustrates a simplified hardware diagram of a system in accordance with a preferred embodiment of the present invention. [0044] System 100 includes Web page development computer 110, server-side computer 140, and client-side computer 170. Web page development computer 110 and client-side computer 170 are shown connected to server-side computer 140 through the Internet 102. In alternate embodiments, the method and apparatus of the present invention also could be used in a system where either or both computers 110, 170 are connected to server-side computer 140 over a LAN, WAN, or other network or link, where such link could be electronic, optical, wireless, or some combination thereof.
  • Web [0045] page development computer 110 and client-side computer 170 could be the same or different machines. Because the Web page development and client functions are different, they are shown as separate computers for the ease of illustration. In addition, only one Web page development computer 110 and one client-side computer 170 are shown connected to server-side computer 140. In some cases, substantially more than one of computers 110 and/or 170 could be connected to server-side computer 140.
  • A brief explanation of the interaction between [0046] computers 110, 140, and 170 follows. First, Web page development computer 110 is used by a human developer to create a Web page in accordance with a preferred embodiment. In a preferred embodiment, Web page development computer 110 then encrypts the page, although the encryption step is not essential. Web page development computer 110 then sends the Web page to server-side computer 140 over the Internet or some other link. When the Web page is requested by client-side computer 170, server-side computer 140 sends the Web page to client-side computer 170 for its use. The Web page can then request data from server-side computer 140. The Web page maintains state information during the database interaction session, and possibly beyond.
  • In an alternate embodiment, Web pages created by [0047] computer 110 could be sent to the server in some other fashion besides sending the information over a physical link to the server. For example, one or more Web pages could be stored on a disk or other storage medium, and the pages stored on that storage medium could be loaded onto the server-side computer 140.
  • The functionality, method, and more detailed apparatus associated with Web [0048] page development computer 110 are described in conjunction with FIGS. 2-6. The functionality, method, and more detailed apparatus associated with server-side computer 140 are described in conjunction with FIGS. 7-9. Finally, the functionality, method, and more detailed apparatus associated with client-side computer 170 are described in conjunction with FIGS. 10-15.
  • In order to build a Web page or to edit a previously-created page, the page developer, via Web [0049] page development computer 110, invokes a program which provides the functions described below. After being invoked, the program displays a “page editor display” which includes several fields which the user manipulates to create a Web page.
  • FIG. 2 illustrates a page editor display in accordance with a preferred embodiment of the present invention. The [0050] page editor display 200 shows three fields 210, 220, 230. Page builder field 220 shows the Web page currently under design. Upon creation of a new page, page builder field 220 would show a blank page. The page designer would then add components to the blank page to create a new page. In a preferred embodiment, a designer could simultaneously edit multiple pages using the tool. In a preferred embodiment, when multiple pages are being edited, the currently active page would be shown within page builder field 220, and the other pages would be hidden. In an alternate embodiment, such pages would be shown cascaded within page builder field 200.
  • Component properties field [0051] 230 includes a list of properties that a particular component may have. In the example shown, the developer has selected an edit box component 222 within page builder field 220. The selected component is used to display the “First Name” of an employee. The particular component properties for such a text component are listed in the left column of the component properties field 230, and the value for each component property is listed in the right column. Component properties could include, for example, component position information, size information, color, text characteristics, and other relevant properties. Originally, the component properties would be default properties for the particular type of component. If desired, the developer can edit the entries in the right column of component properties field 230 to specify different values of the component properties for the selected component.
  • [0052] Toolbar field 210 includes icons 212 which enable the developer to perform functions such as adding a new component to a page, editing source code or properties for a component, linking a component with a component on the same page or another page, and aligning components, among other things.
  • In a preferred embodiment, in order to add a component to a page, one [0053] such icon 212 produces a drop-down menu of components which could be added to the page (e.g., by dragging). These selectable components could include, for example, a button, an edit box for inputting text, a label, an image, an audio icon, a data display box, a menu, a panel, and a hyperlink, although more, fewer, or different components also could be selectable. Adding components is described in detail in conjunction with FIG. 3, steps 320-324.
  • In a preferred embodiment, the developer could add both visible and hidden components to a page. A visible component may be, for example, a button or image that a user may or may not be able to interact with. A hidden component may, for example, not be visible to the user, but may initiate executable code upon some event occurring. For example, one hidden component could be a component which enables a Web page to increase or decrease its display resolution automatically, depending upon what resolution screen the page is asked to be displayed upon. Such code could be invoked when the Web page document is received by the client computer. The code would determine the computer's screen resolution and, if it did not match the Web page's current resolution, the code would multiply or divide the number of pixels and resolution necessary to display the Web page at the proper resolution on the client machine. [0054]
  • Also in a preferred embodiment, a developer could include custom-developed components which are not currently available in the prior art. For example, in a preferred embodiment, one novel component which can be included on a page is a “report generation” component. A report generation component could appear in the form of a button, for example, which a developer adds to a Web page. When a user clicks the report generation component, the page could execute code which extracts data and information from the Web page, formats that data into a report template, and creates a report document which the user could then store, view, and/or print. In a preferred embodiment, the report template would be defined by the developer when the Web page was developed. In an alternate embodiment, a default template could be used. In another alternate embodiment, the user could specify the format of the report at the time that the user requested the report. The “report generation” component provides a distinct advantage over prior-art methods which can provide a screen dump of a Web page, but cannot neatly format information on the page into a well-formatted report or other document. The method and apparatus of the present invention enables a user to create such a well-formatted report or other document from a Web page. [0055]
  • Referring again to FIG. 2, another [0056] icon 212 could cause the tool to invoke a code editor screen, which enables a developer to associate code to a particular component and to specify which events cause that code to be executed. For example, when a particular button component is “clicked,” a developer may want certain code to execute which causes a next database record to be requested. The page developer could use the code editor screen to specify, for that button component, that upon the event “clicked,” code would be executed which causes the next record to be requested. The code editor screen is discussed in detail in conjunction with FIG. 4, and the process of editing code is discussed in detail in conjunction with FIG. 3, steps 340-344. In a preferred embodiment, the code editor utilizes an object oriented language such as Pascal, preferably with some extensions. In alternate embodiments, other languages could be used such as, for example, C++.
  • Another [0057] icon 212 could enable components to be linked within the same page or different pages. When two components are linked in accordance with a preferred embodiment, a user could scroll through data within a first component, and the second component would automatically update to show corresponding information. Component linking is described in detail in conjunction with FIG. 3, steps 330-336.
  • Once a developer has selected and placed all desired components on the page, the developer indicates that he is done, and the Web page development tool links the components within the page, compiles the page, and stores the page in memory. The Web page could then be edited by re-invoking the page development tool, or the page could be deployed as is discussed in detail in conjunction with FIG. 7. [0058]
  • FIG. 3 illustrates a flowchart of a method for creating and deploying a Web page in accordance with a preferred embodiment of the present invention. In a preferred embodiment, the method is performed on a computer such as Web [0059] page development computer 110, FIG. 1.
  • The method begins by performing the [0060] step 301 of initializing the page development tool. As described previously, a developer initializes the page development tool when he wants to create a new page or edit a previously-created page. Upon receipt of the initialization command, computer 110 retrieves the tool's executable code from memory and initiates execution of the code. In a preferred embodiment, the tool displays a page editor display (e.g., display 200, FIG. 2), and gives the developer the option, in step 302, of whether to start a new application or open a previously-created application. In a preferred embodiment, this option could be given as a selectable menu item. In an alternate embodiment, the option may be given via a prompt from the tool.
  • All Web pages are created as part of an application concept, where each application concept is represented by an application file which can group information about one or more Web page files within it. Therefore, information about a previously-created page file would exist within a previously-created application file. If a developer wants to create a new page, the developer must associate the new page file with a previously-created application file, or the developer must start a new application file. [0061]
  • If, in [0062] step 302, the developer indicates that he wants to open an existing application, then the existing application file is opened, in step 303, and the main page file of that application is automatically retrieved, instep 310. Steps 310-312 are described in more detail, below.
  • If, in [0063] step 302, the developer indicates that he wants to start a new application, then a new application file is started in step 304. The new application file can then be used as a vehicle to store information about Web pages. After step 304, the tool gives the developer an option of creating a new page or editing a previously edited page in step 305. In a preferred embodiment, this option could be given as a selectable menu item. In an alternate embodiment, the option may be given via a prompt from the tool. In some cases, it may be possible for a developer to open a Web page file directly, without first opening its associated application file.
  • If, in [0064] step 305, a determination is made that the developer wants to create a new page, the tool displays a blank page, toolbar field, and component properties field on the developer's monitor in step 306. In step 308, the tool also creates a “page document,” similar to an HTML document, which the tool will edit as the developer edits the page. Initially, the page document will be structured as if it describes a blank Web page.
  • If, in [0065] step 305, a determination is made that the developer wants to edit a previously-created page, the tool retrieves a copy of the associated page document from memory in step 310, and displays the page, along with the toolbar field and component properties field in step 312.
  • The tool then waits for additional developer input in [0066] step 314. Once developer input is received, a determination is made, in step 316, what type of developer input has been received. In a preferred embodiment, the following types of developer inputs are possible: 1) a new component has been added to the page; or 2) the developer wishes to link components; or 3) the developer wishes to edit the component code; or 4) the developer wishes to delete a component; or 5) the developer wishes to edit a component property; or 6) the developer wishes to save the page and quit; or 7) the developer wishes to quit without saving the page; or 8) the developer wants to enter a new or existing application. Each of the developer inputs is described below. For ease of illustration, the flowchart includes steps and decisions only relevant to creating, compiling, and storing a Web page. It does not contemplate all possible developer inputs. In alternate embodiments, additional or different developer inputs are possible.
  • 1. Add New Component [0067]
  • When the developer input indicates, in [0068] step 316, that the developer has placed a new component on the page (e.g., using a drop down menu from icons 212, FIG. 2), the tool places the selected component on the page in step 320 and retrieves the associated default code for that component in step 322. The component code is similar in function to a downloaded executable (e.g., a Java Applet), except that the component code will eventually be compiled as part of the Web page in accordance with the present invention, rather than being accessed over the Internet during runtime as a downloaded executable would be. Incorporation of the component code into the Web page eliminates the risk that malicious code will be downloaded and executed for that component.
  • The default code is incorporated into the page document in [0069] step 324, including all information relevant to the type, position, and other properties of the component. In a preferred embodiment, the position of the component is determined by the location where the developer dragged and dropped the component or a position specified by the developer in the component properties field (FIG. 2, field 230). In an alternate embodiment, the component position could be a default position which the developer could later modify via the component properties field or using the mouse.
  • As discussed previously, a number of different types of components could be added to a Web page. Because the addition of a data component includes several important details, addition of a data component is discussed in detail in conjunction with FIG. 5. After [0070] step 324, the method then returns to step 314 to wait for additional developer input.
  • 2. Link Components [0071]
  • When two components are linked in accordance with a preferred embodiment, a developer could scroll through data within a first page, and data displayed on a second page would automatically update to show corresponding information. For the purposes of this description, components are linked between pages, although components could be linked within the same page as well. [0072]
  • The linking capability of the Web development tool is well suited to link data components. In alternate embodiments, the linking capability could be used to link other types of components. In the area of data, the linking capability could be used, for example, to link one or more fields within one table to a different, but corresponding set of fields within another table in a relational database. Alternatively, the linking capability could be used to link fields within the same table. [0073]
  • For example, a developer may wish that a first page include data components which specify a customer ID number, address, and phone number from a “customer information” table of a relational database. The developer may also wish to design a second page that includes a data component which lists a customer's ordering history, where such information, is stored in an “order information” table of the same or a different relational database. Using the method and apparatus of the present invention, the developer could link the customer ID number component on the first page with the ordering history component on the second page. Then, when a user of the first and second pages scrolls through customer ID numbers on the first page, the ordering information for each associated customer would automatically appear on the second page. A similar linking example is described in more detail in conjunction with FIGS. [0074] 13-15.
  • When the developer input indicates, in [0075] step 316, that the developer wishes to link two components, then the developer identifies, in step 330, which components are to be linked. Identification of the linked components could be made through one or more prompts from the Web development tool, or could be performed by the developer selecting the components which he would like to link, then clicking a “link components” icon (e.g., icon 212, FIG. 2).
  • In a preferred embodiment, the developer is asked to specify a “Master” page and a “Detail” page. In an alternate embodiment, the identity of the Master or Detail pages could be some default (e.g., the first component selected could define the Master page). A Master page is the page which displays the “master” information to which the “detail” information on a Detail page is linked. Either or both the Master page and the Detail page include code which will formulate and send a data request to the server for both the data associated with the Master page and the data associated with the Detail page. Using the above example, if the Master page were the page having the customer ID number component (i.e., the “master” information) and the customer ID number were linked to a Detail page's ordering history data field (i.e., the “detail” information), then the code associated with either the Master page or the Detail page would, during operation, request the next customer ID number and the ordering history data when both the Master and Detail pages are open. If the Master page requested the data, then after receiving the next customer ID number and that customer's ordering history, the Master page code would “send” the ordering history data to the Detail page. If the Detail page requested the data, then after receiving the next customer ID number and that customer's ordering history, the Detail page code would “send” the next customer ID number to the Master page. In an alternate embodiment, both pages could include code which would separately request the data associated with each linked component. [0076]
  • After the Master and Detail pages are identified, linking code is created in [0077] step 334. During operation, linking code enables a page to formulate a request for data which identifies the fields which are displayed on the page, and which identifies the fields which are displayed on other linked pages. In addition, the linking code causes received data to be parsed, and the linked-page data to be sent to the linked page. The linking code also enables a page to receive the data from another page, and to automatically display the data (e.g., in the ordering information component).
  • In [0078] step 336, the linking code is added to the page documents for the Master and Detail pages. The method then returns to step 314 to wait for additional developer input.
  • 3. Edit Source Code for Component [0079]
  • When the developer input indicates, in [0080] step 316, that the developer wishes to edit the source code for a selected component, the tool displays, in step 340, a code editor screen in which the current source code for that component is included. In step 342, the developer then edits the source code via the code editor screen.
  • FIG. 4 illustrates an exemplary code editor screen in accordance with a preferred embodiment of the present invention. [0081] Code editor screen 400 includes a command line 410, selectable action list 412, and source code display area 414. After a component is selected and the code editor screen 400 is invoked, source code display area 414 initially includes the current source code for that component. The developer can then edit the displayed source code. Via selectable action list 412, the developer can specify what action will invoke that particular code. For example, the developer can specify that the code should be invoked when information is “Entered” into a text field. As another example, the developer can specify that a “KeyUp” keystroke will cause the component to scroll upward through a list of data.
  • [0082] Command line 410 includes fields which help the developer in the editing process. For example one entry in command line 410 can enable the developer to access standard routines (e.g., absolute value or “Abs”), and include those standard routines in the source code. Another field in command line 410 could help a developer to identify tables within one or more databases, and to drop the table names into the code.
  • Component code could include many different types of instructions. For example, when a customer number is entered into an edit box, the code could cause a data request to be created and sent to a server. Upon receipt of the data, the code could cause the data to be displayed in various other components. [0083]
  • A developer can also provide access protection as part of the component code. For example, if a particular database has restricted access, the developer can cause the page to prompt the user for access information (e.g., a user name and/or password) before the page will request the desired data. Such user access could be controlled, for example, by including a list of valid users, user profiles, and/or passwords within the page document or stored at a server-side computer. If the entered access information does not match a stored user name, profile, and/or password, then the page could inform the user that access is denied. Otherwise, the page would request and provide the specified data. [0084]
  • Besides access protection, a developer can incorporate other user privileges into the page document code and/or component code. For example, a developer can incorporate code which controls which users are allowed to briefcase a Web page. If a user does not have such privileges, the user would not be allowed to store a Web page and/or associated data on his client computer. A developer also can incorporate code which controls which users are allowed to modify data within a database. If a user does not have modification privileges, the page will not allow the user to post changes to records within the database. [0085]
  • Once the developer has finished editing the source code for the particular component, he can save the changes and quit the editor. [0086]
  • Referring back to FIG. 3, the modified source code replaces the previous version of code in the page document in [0087] step 344. The method then returns to step 314 to wait for additional developer input.
  • 4. Delete a Component [0088]
  • When the developer input indicates, in [0089] step 316, that the developer wishes to delete a component that currently exists on the page, the tool removes the component from the display page, in step 350, and the component's associated source code is deleted from the page document in step 352. The method then returns to step 314 to wait for additional developer input.
  • 5. Edit Component Property [0090]
  • A developer can edit a component property via component property field [0091] 230 (FIG. 2) in accordance with a preferred embodiment. In a preferred embodiment, the developer would simply modify the property value in the right column of field 230. When the developer input indicates, in step 316, that the developer wishes to edit a component property (e.g., the developer has entered a new property value), then the component code is modified within the page document in step 358. Such modifications could, for example, indicate that the component should be displayed in a different position, should have a different size, or should use a different font or color. The method then returns to step 314 to wait for additional developer input.
  • 6. Save Page and Quit. [0092]
  • When the developer input indicates, in [0093] step 316, that the developer wishes to save the page and quit, the tool stores the page document in memory in step 360. In a preferred embodiment, the developer is then given the option of deploying the page document to a destination server. If, in step 362, a determination is made that the developer does not want to deploy the page, then the tool is closed in step 370 (unless other pages are being edited), and the method ends.
  • If, in [0094] step 362, a determination is made that the developer chooses to deploy the page, then the developer is prompted to identify (e.g., by its URL) a destination server in step 364. After the file server is identified, the page file is compiled and, in a preferred embodiment, encrypted in step 366. In an alternate embodiment, no encryption is performed. The Web page development computer 110 then establishes a link with the destination server and sends the encrypted page over the Internet (or other link) in step 368. A determination is then made whether the developer wants to close the tool, in step 370. If so, the tool is then closed in step 374 (unless other pages are being edited), and the method ends. If not, then a determination is made, in step 372, whether the developer wants to close the current application. If so, then the procedure branches to step 301. If not, then the procedure branches to step 314.
  • 7. Quit Without Saving. [0095]
  • When the developer input indicates, in [0096] step 316, that the developer wishes to quit without saving, the tool closes itself, in step 370 (unless other pages are being edited), without saving the page file to memory, and the method ends.
  • 8. Open a New or Existing Application. [0097]
  • When the developer input indicates, in [0098] step 316, that the developer wants to open a new or existing application, then the process branches back to step 302, where the tool determines whether the desired application is new or existing. The procedure then continues as shown in FIG. 3.
  • FIG. 5 illustrates a flowchart of a method for adding a database component to a Web page in accordance with a preferred embodiment of the present invention. Such a component would be added to a page, for example, in accordance with [0099] step 320 of FIG. 3.
  • The method begins, in [0100] step 502, when a developer indicates that he would like to place a data component on a page. In step 504, the Web page development tool prompts the developer for the database alias. For example, the database alias could be a name which the tool uses to identify the path of the database.
  • Once the tool knows the database alias, the tool displays the names of the tables associated with that database in [0101] step 506. The developer is prompted to select one or more tables from the database, and the tool waits for the developer selection in step 508. Once the developer has selected a table (or tables), the tool adds each table field as a separate component to the page in step 510. In an alternate embodiment, the tool could display all fields and allow the developer to select which field (or fields) the developer would like to have added to the page.
  • When the data components are added to the page, the tool creates the component code for each component in [0102] step 512. In a preferred embodiment, the component code would include information necessary to request, receive, and display the data. Typically, if several components include data from the same table, only one of the components needs to perform the actual data request. Such request would request data for each of the related field components. Creation of component code is analogous to accessing code in step 322, FIG. 3.
  • The method then waits for additional developer input in [0103] step 514. Once developer input is received, a determination is made, in step 516, what type of developer input has been received. In a preferred embodiment, the following types of developer inputs are possible: 1) the developer wishes to modify the display format; or 2) the developer wishes to delete a field; or 3) the developer wishes to specify a field constraint; or 4) the developer indicates that he is done. Each of the developer inputs is described below. For ease of illustration, the flowchart does not contemplate all possible developer inputs. In alternate embodiments, additional or different developer inputs are possible.
  • 1. Modify the Display Format [0104]
  • When the developer input indicates, in [0105] step 516, that the developer wishes to modify the display format of a particular data component (or components), then, in step 518, the display format is moved, resized, or otherwise modified in accordance with the developer's instructions. For example, a developer may want to align all data components differently from the current alignment. The developer could specify this change in display format, in a preferred embodiment, by selecting an alignment icon (e.g., icon 212, FIG. 2), and specifying the desired alignment. Alternatively, the developer could change a display format by manipulating the component properties field 230 (FIG. 2). The method then returns to step 514 to wait for additional developer input.
  • 2. Delete a Field [0106]
  • When the developer input indicates, in [0107] step 516, that the developer wishes to delete a particular field of a table from the Web page, then the tool removes the component from the display page, in step 520, and the component's associated source code is deleted from the page document in step 522. These steps are analogous to steps 350, 352 of FIG. 3. The method then returns to step 514 to wait for additional developer input.
  • 3. Specify a Field Constraint [0108]
  • When the developer input indicates, in [0109] step 516, that the developer wishes to specify a particular field constraint, the tool modifies the component code for the particular field to reflect the corresponding constraint in step 524. For example, in a data field that receives text data, the developer could specify that the component should only display data items having a first letter of “A”. This constraint would be added to the component code and, upon execution, the component would only display table entries having the first letter of “A”. The method then returns to step 514 to wait for additional developer input.
  • 4. Done [0110]
  • When the developer input indicates, in [0111] step 516, that the developer is done editing the component code for the field (or fields) is incorporated into the page document in step 526, and the process ends.
  • FIG. 6 illustrates a simplified hardware block diagram of a Web [0112] page development computer 110 in accordance with a preferred embodiment of the present invention. Web page development computer 110 could be, for example, a SUN workstation or another desktop or laptop personal computer. In a preferred embodiment, computer 110 includes processor means 612, user input means 614, data storage means 616, and monitor 618. In addition, computer 110 includes encryption means 620 and/or communication hardware 622, although these two elements are not essential to achieve many of the advantages of the present invention.
  • Processor means [0113] 612 could be, for example, an Intel Pentium processor or other processor suitable for performing the processing functions of Web page development computer 110. These processing functions are described in detail in conjunction with FIGS. 3 and 5, but include, for example, initializing the page development tool (step 301, FIG. 3), creating or accessing a page document ( steps 306, 310, FIG. 3), placing a selected component on or removing a selected component from a page ( steps 320, 350, FIG. 3), editing component properties (step 358, FIG. 3), editing component code (step 342, FIG. 3), and storing/deploying pages (steps 360-368, FIG. 3).
  • User input means [0114] 614 is coupled to processor means 612, either directly or through various hardware and interfaces. User input means 614 could be, for example, a keyboard, mouse, microphone, speaker, digital video device, or any combination thereof. User input means 614 is the way in which a developer gives commands and/or information to the page development tool. Such commands could include, for example, a command to initialize the tool (step 301, FIG. 3), drag and drop a new component, edit a component property, edit component source code, delete a component, save a page document, quit the page development tool, or deploy a page.
  • Data storage means [0115] 616 is coupled to processor means 612, either directly or through various hardware and interfaces. Data storage means 616 is used to store the Web page development tool code, page documents, source and executable code for components, and other data items. Data storage means 616 could include any type of read only memory (ROM) and/or random access memory (RAM), and could be in the form of magnetic or optical storage medium, such as, for example, hard drives, compact disks, magnetic disks, or any combination thereof. For ease of illustration, only one data storage means 616 is shown. It would be obvious to one of skill in the art, however, that several types of storage would be desirable in order to carry out the method of the present invention.
  • [0116] Monitor 618 is coupled to processor means 612, either directly or through various hardware and interfaces. Monitor 618 is used to display screens associated with the Web page development tool, including, for example, page editor displays (e.g., display 200, FIG. 2) and code editor screens (e.g., screen 400, FIG. 4). Monitor 618 is the primary mechanism for providing visual feedback to the developer during a page-development session, although other means of feedback (e.g., a speaker) also could be used.
  • In a preferred embodiment, encryption means [0117] 620 is coupled to processor means 612, either directly or through various hardware and interfaces. In an alternate embodiment, encryption means 620 is coupled to communication hardware 622. Encryption means 620 is used in a preferred embodiment to encrypt messages, page documents, and/or other information prior to transmission via communication hardware 622. Encryption means 620 also is used in a preferred embodiment to decrypt messages and/or other information received via communication hardware 622. Encryption means 620 could use, for example, nearly any approved encryption algorithm, including public key/private key algorithms, scrambling, or another proprietary algorithm. Encryption means 620 is not essential to the method and apparatus of the present invention, but it provides an enhanced measure of information security.
  • In a preferred embodiment, [0118] communication hardware 622 is coupled to processor means 612 and/or encryption means 620, either directly or through various hardware and interfaces. Communication hardware 622 can be, for example, a modem used to modulate or demodulate information transmitted or received, respectively, over an external link. Such information could be in encrypted or unencrypted form. Alternatively, communication hardware 622 could be a network card, USB, or other communication device.
  • Although only one processor means [0119] 612, user input means 614, and data storage means 616 are shown, any number of processors, user input means, and data storage devices could be used in conjunction with Web page development computer 110.
  • As described previously in conjunction with FIG. 3, steps [0120] 362-368, after creation of a Web page by Web page development computer 110, a developer may then request that computer 110 “deploy” the new Web page. “Deployment” of a Web page refers to the act of sending the page to a server which will then provide access to the page to client computers via the Internet. Web page development computer may send the Web page to the server via the Internet, a LAN, a WAN, any other type of optical, wireless, or wired link (or links), or via a tangible data storage medium.
  • FIG. 7 illustrates a flowchart of a method for receiving, storing, and delivering Web pages in accordance with a preferred embodiment of the present invention. In a preferred embodiment, the method is performed on a computer such as server-side computer [0121] 140 (FIG. 1).
  • The method begins, in [0122] step 702, when the server-side computer receives one or more Web pages. In a preferred embodiment, these Web pages are received from a computer, such as Web page development computer 110 (FIG. 1), over the Internet or some other link. The received Web pages could be in an encrypted or unencrypted form.
  • In [0123] step 704, the server-side computer stores the received Web pages for later access. In a preferred embodiment, if a Web page is received in encrypted form, server-side computer stores the page in the encrypted form. In an alternate embodiment, server-side computer could decrypt the Web page before storing it.
  • A particular Web page could be stored for any length of time before a client requests that the page be sent to the client computer. In addition, servers often store databases which can be accessed by a Web page application. Requests for Web pages or data come in the form of client messages that may or may not be encrypted. [0124]
  • In [0125] step 706, when server-side computer receives a client request for data or a request for a Web page, server-side computer decrypts the request, if necessary. A determination is made, in step 708, whether the page and/or data requires access authorization. Authorization may be necessary for either or both the user and the server. In a preferred embodiment, user authorization is performed on the client computer by the Web page which invokes the request for data or another Web page. Such an approach is desirable because it eliminates the need to send authorization messages back and forth between the client and the server. In an alternate embodiment, such authorization could be performed at the server. The authorization step 708 refers to server authorization in accordance with the preferred embodiment. If necessary, such authorization could be performed for the user as well.
  • FIG. 8 illustrates a flowchart of a method for controlling access to a Web page or data in accordance with a preferred embodiment of the present invention. The method begins, in [0126] step 802, by determining whether the requested page or data is “secure,” or requires access authorization. If not, then it is determined that access is approved in step 810 and the procedure ends.
  • If it is determined, in [0127] step 802, that the requested page or data does require access authorization, then in step 804, access information is requested. If the server must provide access information, the server could send its authorization information (e.g., a password) to the database manager who controls access to the data or page. The database manager would then compare, in step 806, the access information with an access list or, in the case of user authorization, a user profile list.
  • A determination is then made, in [0128] step 808, whether or not the server (or user) is authorized to access the data based on the comparison made in step 806. If so, then it is determined that access is approved in step 810 and the procedure ends. If not, then it is determined that access is denied in step 812 and the procedure ends.
  • Referring back to FIG. 7, if, in [0129] step 708, it is determined that access is denied (either to the user or to the server), then server-side computer sends an access denied message to the client computer in step 710 and the program iterates as shown in FIG. 7.
  • If, in [0130] step 708, server-side computer determines that access authorization is not necessary or that access is allowed, then server-side computer retrieves the requested page and/or data in step 714. In step 716, once the Web page and/or data is retrieved, server-side computer sends the page and/or data (either in encrypted or unencrypted form) to the client-side computer. The program then iterates as shown in FIG. 7.
  • FIG. 9 illustrates a simplified hardware block diagram of a server-[0131] side computer 140 in accordance with a preferred embodiment of the present invention. Server-side computer 140 computer could be, for example, a SUN workstation or another desktop or laptop personal computer. In a preferred embodiment, server-side computer 140 includes first communication hardware 910, processor means 912, and data storage means 914. In addition, computer 140 includes encryption/decryption means 920 and second communication hardware 930, although these two elements are not essential to achieve many of the advantages of the present invention.
  • Processor means [0132] 912 could be, for example, an Intel Pentium processor or other processor suitable for performing the processing functions of server-side computer 140. These processing functions are described in detail in conjunction with FIG. 7, but include, for example, receiving and storing Web pages (steps 702, 704), processing client requests (step 706), determining access rights (step 708), and retrieving and sending pages and data (step 716).
  • Data storage means [0133] 914 is coupled to processor means 912, either directly or through various hardware and interfaces. Data storage means 914 is used to store Web pages, either encrypted or unencrypted, messages, and databases. Often, however, databases are stored remotely and are accessible to a server via a database manager. Data storage means 914 could include any type of read only memory (ROM) and/or random access memory (RAM), and could be in the form of magnetic or optical storage medium, such as, for example, hard drives, compact disks, or magnetic disks. For ease of illustration, only one data storage means 914 is shown. It would be obvious to one of skill in the art, however, that several types of storage may be desirable in order to carry out the method of the present invention.
  • In a preferred embodiment, encryption/decryption means [0134] 920 is coupled to processor means 912, either directly or through various hardware and interfaces. In an alternate embodiment, encryption/decryption means 920 is coupled to first communication hardware 910 and/or second communication hardware 930. Encryption/decryption means 920 is used in a preferred embodiment to encrypt messages, data, Web pages, and/or other information prior to transmission via first or second communication hardware 910, 930. Encryption/decryption means 920 also is used in a preferred embodiment to decrypt messages and/or other information received via first or second communication hardware 922, 924. Encryption/decryption means 920 could use, for example, nearly any approved encryption algorithm, including public key/private key algorithms, scrambling, or another proprietary algorithm. Encryption/decryption means 920 is not essential to the method and apparatus of the present invention, but it provides an enhanced measure of information security.
  • In a preferred embodiment, [0135] first communication hardware 910 and second communication hardware 930 are coupled to processor means 912 and/or encryption/decryption means 920, either directly or through various hardware and interfaces. First communication hardware 910 could be, for example, a modern used to modulate or demodulate information transmitted or received, respectively, over an external link with a computer such as Web page development computer 110 (FIG. 1). Second communication hardware 930 also could be, for example, a modem used to modulate or demodulate information transmitted or received, respectively, over an external link with a computer such as client-side computer 170 (FIG. 1). Such information could be transmitted or received in encrypted or unencrypted form. Communication hardware 910, 930 alternatively could be network cards, USBs, or other communication devices. In an alternate embodiment, computer 140 could include only a single communication hardware device which communicates with both Web page development computers and client-side computers. In still another alternate embodiment, computer 140 could include a bank of communication hardware and/or modems for communicating with multiple other computers.
  • Although only one processor means [0136] 912, data storage means 914, and first and second communication hardware 910, 930 are shown, any number of processors, data storage devices, and communication hardware could be used in conjunction with server-side computer 140.
  • FIG. 10 illustrates a flowchart of a method for requesting, receiving, and displaying a Web page in accordance with a preferred embodiment of the present invention. In a preferred embodiment, the method is performed on a computer such as client-side computer [0137] 170 (FIG. 1).
  • The method begins, in [0138] step 1002, when an initialize browser command is received from a user of client-side computer 170. The initialize browser command indicates that the user wants to open the browser associated with the method and apparatus of the present invention.
  • In [0139] step 1004, the browser is initialized and it creates and sends a request for the main Web page associated with the browser. In a preferred embodiment, the request is encrypted, although this is not essential for the method and apparatus of the present invention. The browser then waits to receive the main page from the server. If it is not received within a certain timeout period, the browser can display a timeout message to the user and can terminate.
  • When the main page is received, in [0140] step 1006, the page is decrypted, if necessary, and displayed on the user monitor. After the Web page is displayed, the client-side computer maintains the display until user input or a page command is received, in step 1008. User input could take the form of input from a keyboard, a mouse click, or an audio command, for example. A page command would be a command from an active Web page to perform some function.
  • Once user input or a page command is received, a determination is made, in [0141] step 1010, what type of input has been received. In a preferred embodiment, the following types of user inputs and page commands are possible: 1) a page has been requested; or 2) data has been requested; or 3) some non-page/non-data request has been made; or 4) the user has requested that a page/data be briefcased; or 5) the user wishes to quit. Each of the user inputs and page commands is described below. For ease of illustration, the flowchart includes steps and decisions only relevant to receiving, displaying, and storing a Web page and/or data. It does not contemplate all possible user inputs and page commands. In alternate embodiments, additional or different user inputs and page commands are possible.
  • 1. Page Request [0142]
  • If, in [0143] step 1010, it is determined that the user has requested a Web page, then a determination is made, in step 1012, whether the user has access rights. The access rights determination is made, in a preferred embodiment, by the Web page from which the user requested access to a new page. In other words, the Web page includes code that enables it to determine whether or not the user is authorized to access the requested Web page. Checking user access privileges could, for example, require the user to input a password or some other information, and the password could be checked with information stored within the page document. Such an access determination could be made by an algorithm similar to that described in detail in conjunction with FIG. 8, for example, except that all steps would be performed on the client-side computer. In alternate embodiments, access rights could be determined through some other method.
  • If a determination is made, in [0144] step 1012, that access is denied, then an access denied message is sent to the user in step 1014 (e.g., by displaying the message on the monitor). If access is approved, then the Web page formulates the page request and sends it to the appropriate server in step 1016. The appropriate server could be a remote server or, in some cases, could be a local server.
  • Once the page is received, the client computer decrypts the page, if necessary, and displays the Web page on the monitor in [0145] step 1018. The Web page then becomes “active,” and certain portions of component code could execute. If the Web page includes data components, then the page could request the first set of data to be displayed within those data components. If, as indicated in step 1020, the Web page does not include data components, then the method returns to step 1008 to wait for additional user input. If the Web page does include data components, then the method determines, in step 1021, whether that data is locally stored. If not, then the method executes steps 1026-1034 which are necessary for the Web page to request the appropriate data. If, in step 1021, the method determines that the data is locally stored, then the method executes steps 1028-1034. In such a case, the appropriate server in step 1030 would be the local server, rather than a remote server. Steps 1026-1034 are discussed in detail below.
  • In certain instances, a page could be requested without performing steps [0146] 1002-1010. For example, a user could invoke a Web page created in accordance with a preferred embodiment by typing the page's URL into a browser. Such browser could be the browser in accordance with the present invention, or could be a prior art browser. If a page is accessed directly, it may be necessary for the server to perform access authorization, since the page was not invoked by another page having knowledge of user access rights. Alternatively, the page could perform access authorization upon being downloaded to the client computer.
  • 2. Data Request [0147]
  • If, in [0148] step 1010, it is determined that the user has requested data, then a determination is made, in step 1022, whether the data is stored locally. The data may be stored locally, for example, if the data had been previously obtained from the server and stored on the client machine. For example, the user may have downloaded several sets of data during an interaction with a particular page. The user may then want to scroll backwards into data that the user previously downloaded. Alternatively, the user may have briefcased a page and a set of data and may want to view the briefcased data. In any event, if the data is locally stored, then the data is located and displayed, in step 1024, by the client computer.
  • If the data is not locally stored, then a determination is made, in [0149] step 1026, whether the user has access rights. This determination could be made in a manner similar to step 1012, except that the access rights would pertain to access to data, rather than access to a page. If the user does not have access rights, then an access denied message is sent to the user in step 1014 and the procedure iterates as shown.
  • If the user does have access rights, then the criteria necessary to describe the data are determined in [0150] step 1028. Step 1028 could also be invoked, as previously described, when a Web page automatically determines that it needs to request a set of data (step 1020). The data criteria identify the database, table, and record (or records) which the user or Web page would like to view. In a preferred embodiment, the particular record to be viewed is identified by evaluating state variables stored by the Web page. These state variables indicate which records the page has already accessed, and which records would be next.
  • Storage of state variables by the Web page represents a significant advantage to the method of the present invention. Such storage eliminates the need to have intelligence at the server to maintain state information (e.g., “agents”), and also eliminates the need to maintain a persistent connection with the server during the entire database access session. Thus, maintenance of state variables at the Web page results in reduced server complication and also in lower bandwidth demands, among other advantages. [0151]
  • After the data criteria are determined, in [0152] step 1028, then a data request is formulated and the request is sent to the appropriate server in step 1030. The appropriate server could be a remote server or, in some cases, could be a local server. In a preferred embodiment, the request is encrypted before it is sent, although this is not essential. The requested data is received, in step 1032, and displayed within the appropriate data component (or components). In step 1034, the state variables associated with the data are updated to reflect the fact that the user has advanced further within the database (or to different records within the database). The method then returns to step 1008 to wait for additional user input.
  • 3. Non-Page/Non-Data Request [0153]
  • If, in [0154] step 1010, it is determined that the user (or a Web page) has made a request that is not a page or data request, then the client computer performs the function associated with the request, in step 1036, and the method returns to step 1008 to wait for additional user input. Non-page and non-data requests could include, for example, a request to use a hyperlink to another Web site, a request to run an audio or video file, a request to send an e-mail, or many other types of requests.
  • 4. Briefcase Request [0155]
  • If, in [0156] step 1010, it is determined that the user has requested that a page and/or data be briefcased, then a determination is made, in step 1038, whether the page and/or data is storable. In a preferred embodiment, this determination is made by the Web page through execution of code that a developer included within the Web page (as discussed in conjunction with FIG. 3, step 342). The determination of whether a page and/or data is storable also could include an access rights determination.
  • If it is determined that the page and/or data is storable, then the page document, data which has been downloaded in conjunction with the page, and the current state variables are stored on the client computer in [0157] step 1040. Storage of the state variables is desired so that, when a user decides to re-invoke the page, the user can begin accessing data where the user previously left off. If step 1041 indicates that the developer wanted to quit, then the method branches to step 1050. If, in step 1050, a determination is made that the developer wants to close the browser, then the browser is closed and the method ends. Otherwise, the method branches to step 1002. If step 1041 indicates that the developer did not want to quit, the method then returns to step 1008 to wait for additional user input.
  • If, in [0158] step 1038, it is determined that the page and/or data is not storable, then the user is so notified, in step 1042. If step 1043 indicates that the developer wanted to quit, then the page document, data, and state variables are deleted in step 1044. The method then returns to step 1008 to wait for additional user input. If step 1043 indicates that the developer did not want to quit, then the method returns to step 1008 to wait for additional user input.
  • 5. Quit [0159]
  • If, in [0160] step 1010, it is determined that the user would like to quit, then, in a preferred embodiment, the user is asked whether he would like to briefcase the page and/or data. If the user indicates that he would like to briefcase the page and/or data, then steps 1038-1044 are performed. If the user indicates that he would not like to briefcase the page and/or data, then the page document, data, and state variables are deleted, in step 1048, and a determination is made, in step 1050, whether the developer wants to close the browser. If so, the browser is closed and the method then ends. If not, then the method branches to step 1002 and continues.
  • One advantage to the present invention is that the browser associated with the Web pages of the preferred embodiment can be much smaller than prior-art Web pages. One reason for this is that each Web page developed in accordance with the present invention is capable of communicating directly with remote servers. Prior art Web pages rely on prior art browsers to relay messages back and forth from the server. The Web pages of the present invention do not. Therefore, it is possible to close the browser of the present invention during an interactive session between a Web page and a server. In fact, a Web page created in accordance with the present invention could request that the browser be closed upon invocation of the page. [0161]
  • If a Web page and/or data has been briefcased and edited by a user offline, the user may later want to post his data changes to the database. FIG. 11 illustrates a flowchart of a method for posting modified data to a remote database in accordance with a preferred embodiment of the present invention. [0162]
  • The method begins, in [0163] step 1102, when the user initializes the browser. Browser initialization was discussed in more detail in conjunction with FIG. 10, step 1002. Once the browser is initialized, then the user can cause the locally-stored Web page and data to be loaded and displayed in step 1104. At this stage, the user could perform additional edits, if desired.
  • Once the user has made his changes to the data, then he informs the page to connect to the server and post the changes. In a preferred embodiment, the page determines whether the user has access rights to make such changes to the database in [0164] step 1106. Access rights determination could be made, for example, in a manner similar to FIG. 10, step 1026. During development of the page, the developer could incorporate code into the Web page which indicates who has data modification privileges, as discussed previously in conjunction with FIG. 3, step 342. If the user does not have access rights, then an access denied message is sent to the user in step 1108 and the procedure ends.
  • If the user does have access rights, then the page, in [0165] step 1110, formulates a message which identifies the database and table, and which also includes the old data records (i.e., the data which was originally downloaded from the server) and the modified data records. The server then determines, in step 1112, whether the server has access rights to modify the data within the database. If not, then the server sends an access denied message to the client computer, in step 1114, and the procedure ends.
  • If the server does have access rights, then, in [0166] step 1116, the server compares the old records received from the client computer with the records currently existing in the database. A determination is made, in step 1118, whether the old records and existing records match. If they do not match, it indicates that the database has been modified by another user since the current user downloaded the data. In such a case, the server sends the existing records back to the client computer, in step 1120, so that the client computer can query the user as to whether he actually wants to modify the database. If the user indicates, in step 1122, that the replacement is not desired, then the procedure ends.
  • If the user indicates that replacement is desired, or if the old and existing records match, then the existing records are replaced with the modified records in [0167] step 1124, and the procedure ends. Some of steps 112-124 may require the server to interact with a database manager associated with the database.
  • FIG. 12 illustrates a simplified hardware block diagram of a client-[0168] side computer 170 in accordance with a preferred embodiment of the present invention. Client-side computer 170 could be, for example, a SUN workstation or another desktop or laptop personal computer. In a preferred embodiment, client-side computer 170 includes processor means 1212, user input means 1214, data storage means 1216, communication hardware 1222, and monitor 1218. In addition, computer 170 includes encryption/decryption means 1220, although this element is not essential to achieve many of the advantages of the present invention.
  • Processor means [0169] 1212 could be, for example, an Intel Pentium processor or other processor suitable for performing the processing functions of client-side computer 170. These processing functions are described in detail in conjunction with FIG. 10, but include, for example, initializing the browser (step 1002, FIG. 10), requesting the main page (step 1004, FIG. 10), requesting additional pages (steps 1012-1020, FIG. 10), requesting data (steps 1022-1034, FIG. 10), and briefcasing pages and data (steps 1038-1044, FIG. 10).
  • User input means [0170] 1214 is coupled to processor means 1212, either directly or through various hardware and interfaces. User input means 1214 could be, for example, a keyboard, mouse, microphone, digital video device, or any combination thereof. User input means 1214 is the way in which a user gives commands to the browser.
  • Data storage means [0171] 1216 is coupled to processor means 1212, either directly or through various hardware and interfaces. Data storage means 1216 is used to store the browser, page documents, data from remote databases, and other data items. Data storage means 1216 could include any type of read only memory (ROM) and/or random access memory (RAM), and could be in the form of magnetic or optical storage medium, such as, for example, hard drives, compact disks, and magnetic disks. For ease of illustration, only one data storage means 1216 is shown. It would be obvious to one of skill in the art, however, that several types of storage would be desirable in order to carry out the method of the present invention.
  • [0172] Monitor 1218 is coupled to processor means 1212, either directly or through various hardware and interfaces. Monitor 1218 is used to display Web pages to the user.
  • In a preferred embodiment, encryption/decryption means [0173] 1220 is coupled to processor means 1212, either directly or through various hardware and interfaces. In an alternate embodiment, encryption/decryption means 1220 is coupled to communication hardware 1222. Encryption/decryption means 1220 is used in a preferred embodiment to encrypt messages, requests, and/or other information prior to transmission via communication hardware 1222. Encryption/decryption means 1220 also is used in a preferred embodiment to decrypt messages, Web pages, and/or other information received via communication hardware 1222. Encryption/decryption means 1220 could use, for example, nearly any approved encryption algorithm, including public key/private key algorithms, scrambling, or another proprietary algorithm. Encryption means 1220 is not essential to the method and apparatus of the present invention, but it provides an enhanced measure of information security.
  • In a preferred embodiment, [0174] communication hardware 1222 is coupled to processor means 1212 and/or encryption/decryption means 1220, either directly or through various hardware and interfaces. Communication hardware 1222 could be, for example, a modem used to modulate or demodulate information transmitted or received, respectively, over an external link. Such information could be in encrypted or unencrypted form. Alternatively, communication hardware 1222 could be a network card, USB, or other communication device.
  • Although only one processor means [0175] 1212, user input means 1214, and data storage means 1216 are shown, any number of processors, user input devices, and data storage devices could be used in conjunction with client-side computer 170.
  • As previously described, the method and apparatus of the present invention provide the advantage of enabling a user to browse data on a first open page while the data on a second open page is automatically updated. Creation of pages having linked components from the developer perspective was described in detail in conjunction with FIG. 3, steps [0176] 330-336. Data linking is now described from the client-side computer perspective.
  • As described previously, multi-page data linking refers to the linking of various data sets across multiple Web pages. For example, in a preferred embodiment, a first Web page may include a component containing data through which the user can scroll. The user may then open a second Web page which contains a component containing data which is related to, but different from, the data displayed by the first page. In a preferred embodiment, these two pages are linked in such a way that, when the user opens the second page, the data displayed therein will correspond to the data displayed in the first page. In addition, when the user scrolls through the data on either page, the other page will automatically update itself to display the corresponding data. [0177]
  • An example will better illustrate the preferred embodiment. Assume that a first Web page permits access to certain employee information which is stored in an employee information database accessible to a server. In the present example, the database could be a relational database, where unique employee numbers are the keys used to link records of the various tables together. The database could include the employee number and multiple types of information such as: [0178]
  • a) job-related information, including supervisor name, secretary name, office location, work phone and fax numbers, and job title; [0179]
  • b) personnel-related information, including salary, job grade level, performance data, and hire date; [0180]
  • c) personal information, including name, social security number, home address and telephone number, marital status, gender, and age. [0181]
  • Assume that a first Web page includes a component for displaying the employee name, along with the first type of employee information, namely job-related information. After the Web page user selects a particular employee name, the user's client-side computer would send a request to the appropriate server for the job-related information for that employee. The server-side computer would retrieve that information from the employee information database and send the information back to the client-side computer. In a preferred embodiment, the client-side computer would then display the information in the first Web page's data component or components corresponding to the information, and would update the state variables which identify what record of the database the user has accessed. [0182]
  • Assume further that the user has an option (and access privileges) to open a second, related Web page which includes a component for displaying the employee's personnel-related information. In a preferred embodiment of the present invention, the client-side computer would send a request to the server for the same employee's personnel-related information without requiring the user to input the employee name again. The server would access and send the appropriate personnel-related information, which would be displayed on the second page. [0183]
  • If the user kept both pages open and, on the first page, entered another employee's name, then the method of the present invention would cause the data on both the first and second Web pages to be updated automatically to reflect the job-related and personnel-related information for the second employee. In this manner, the data between the two Web pages is linked. When the data is updated on the first page, the related data is also updated on the second page. [0184]
  • FIG. 13 illustrates a flowchart of a method for multi-page data linking in accordance with a preferred embodiment of the present invention. In a preferred embodiment, the method is performed on a computer such as client-[0185] side computer 170, FIG. 1. The method begins, in step 1302, by displaying a first page and an associated first data set. For ease of illustration, the first page will be considered the Master page, as that term has been previously defined.
  • [0186] Step 1302 presumes that no access restrictions exist or the user has access approval to display the first page and/or first data set. In step 1304, state variables identifying the first data set are stored. In the example described above, the first data set could include an employee's job-related information.
  • In [0187] step 1306, a user request is received to display a second page having a second set of related data. For ease of illustration, the second page will be considered the Detail page, as that term has been previously defined. In the example described above, the second data set could include an employee's personnel-related or personal information. The second page is received, in step 1310, and after it becomes active, the state variables associated with the first page are used to formulate a request for the second-page data in step 1312.
  • The second-page data request is sent to the server, in [0188] step 1314, and the second-page data is received, in step 1316. If the second page includes data components which are unrelated to the first-page data, then state variables for those new data components may also need to be initialized. In step 1318, the second page and second-page data is displayed by the client-side computer. In an alternate embodiment, the second page could be displayed prior to step 1318.
  • If the user requests another page with related data (e.g., a page which displays the employee's personal information), steps [0189] 1306-1318 are repeated. If the user requests additional data on any one of the pages (e.g., data for another employee), then the related state variables are used to formulate the data request for each page having related data and, once the data is received from the server, the corresponding data components for each page are updated.
  • In some cases, a particular Web page in accordance with the present invention may have requested and stored multiple data records (e.g., information for multiple employees), even though the page displays information contained in only one or a few such records. Upon opening a second page, the related data for the multiple data records could be requested from the server and stored, and the second page also could display information contained in only one or a few such records. [0190]
  • If the user wants to scroll through the locally-stored data, it would not be necessary to request the data from the server (steps [0191] 1312-1316). Instead, the client-side computer would access and display the previously-stored data for each of the pages. Server requests for data are necessary only when a Web page (or pages) want access to data which they have not downloaded and maintained. In addition, state variables need to be updated only when new sets of data are received from the server.
  • FIG. 14 illustrates an exemplary linked Web page display in accordance with a preferred embodiment of the present invention. A [0192] browser display 1405 is associated with a browser which is initially used to gain access to a server-side computer and to display an initial Web page. In accordance with the present invention, the browser may thereafter be closed, at the user's option, as the browser is not essential for a user to interact with Web pages which were designed in accordance with the present invention. A first page 1410 and a second page 1420 each display particular items of related data. In the example shown, first page 1410 displays data for customer number 1412, company 1414, and other information for that particular customer number. Second page 1420 also displays customer number 1422 and company 1424, but also displays different, but related information, specifically the history of customer sales 1426.
  • In a preferred embodiment, at the time that the user opened [0193] second page 1420, the method of the present invention used the state variables identifying the first page data to formulate a request for the customer sales data 1426. Also in a preferred embodiment, if the user changed the customer number 1412 or 1422 in either first page 1410 or second page 1420, the method of the present invention would update the company data 1414, 1424, customer sales 1426, and other related data displayed by both pages 1410 and 1420.
  • FIG. 15 illustrates a flowchart of a method for scrolling through data in association with linked pages in accordance with a preferred embodiment of the present invention. In a preferred embodiment, the method is performed on a computer such as client-[0194] side computer 170, FIG. 1.
  • When the method begins, it is assumed that multiple linked data pages have already been downloaded in accordance with the method described in FIG. 13. Therefore, upon initiation of the method of FIG. 15, it is further assumed that multiple linked pages, which include linked data components, are currently being displayed, and the state variables for those pages have been stored by the Web pages. [0195]
  • In [0196] step 1502, one of the linked pages receives user input indicating that the user would like to display a different set of data within one or more components on that page. Upon receiving this request, a determination is made, in step 1504, whether the requested data is currently stored on the client machine. For example, a client machine may have received and stored only the first twenty records of employee personal data in response to one or more previous requests to the server. In a preferred embodiment, those twenty records would be stored on the client machine and the user would be able to scroll through them without initiating another request to the server. Following the same example, if the user attempts to scroll to the twenty-first record, the Web document would need to formulate another request for data and send that request to the server in a preferred embodiment. While scrolling through the first twenty records, step 1504 would determine that the data is stored locally. If a request for data other than that which is contained within the first twenty records is received, step 1504 would determine that the data is not stored locally. If step 1504 determines that the data is stored locally, then the data is retrieved and displayed in step 1506.
  • If [0197] step 1504 determines that the data is not stored locally, then a determination is made, in step 1508, whether the data is being scrolled in a linked page component. If the data is being scrolled in a linked page component, then, in step 1510, the first page sends a request to the linked page which obtains data from the server for the first page, where the request indicates which data the first page would like to view.
  • If the first page is capable of creating and sending its own data requests to the server, or after the request is received by the linked page from the first page, then, in [0198] step 1512, the client machine creates a request for the data displayed by both the first and linked pages using the state variables. The client machine then sends the request to the server in step 1514. Upon receipt of the data from the server in step 1516, the page which requested the data from the server sends the data to the page which displays that data, and that page displays the data in step 1518. The state variables affected by the new data are then updated in step 1520, and the procedure iterates as shown.
  • Thus, a method and apparatus for developing, deploying, downloading, and executing Web pages has been described which overcomes specific problems, and accomplishes certain advantages relative to prior art methods and mechanisms. One advantage to the method and apparatus of the present invention is that, during database applications, they do not require an entire page to be dynamically generated at the server each time a user requests a new set of data. Instead, in accordance with the present invention, the server only sends the new piece of data and the Web page updates the appropriate field An additional advantage is that the method and apparatus of the present invention enable state management to be performed by the client-side computer by utilizing code embedded within a Web page. This state management capability also enables the method and apparatus of the present invention to provide Web page briefcasing, an additional advantage of the present invention. In addition, the embedded Web page code of the method and apparatus of the present invention greatly reduce security risks associated with prior-art downloaded executables which could contain malicious code. Another advantage of the present invention is that it enables a Web-page users to view and interact with multiple linked pages simultaneously, without launching another instance of the Web browser. [0199]
  • The foregoing descriptions of the specific embodiments will so fully reveal the general nature of the invention that others can, by applying current knowledge, readily modify and/or adapt the embodiments for various applications without departing from the generic concept. Therefore, such adaptations and modifications should, and are intended to be comprehended within the meaning and range of equivalents of the disclosed embodiments. In particular, while a preferred embodiment has been described in terms of a system in which the client-side computer and the page development computer communicate with a server-side computer over the Internet, those of skill in the art will understand, based on the description herein, that the method and apparatus of the present invention also could be used in a system in which either or both the client-side and development computers communicate with the server-side computer over a LAN, WAN, or other network or link. Moreover, those skilled in the art will appreciate that the flowcharts presented herein are intended to teach the present invention and that different techniques for implementing program flow that do not necessarily lend themselves to flowcharting may be devised. For example, each task discussed herein may be interrupted to permit program flow to perform background or other tasks. In addition, the specific order of tasks may be changed, and the specific techniques used to implement the tasks may differ from system to system. [0200]
  • It is to be understood that the phraseology or terminology employed herein is for the purpose of description, and not of limitation. Accordingly, the invention is intended to embrace all such alternatives, modifications, equivalents, and variations as fall within the spirit and broad scope of the appended claims. [0201]

Claims (37)

What is claimed is:
1. A Web page document which results in a client-side computer displaying a Web page corresponding to the Web page document, the Web page document comprising:
information describing components included on the Web page; and
event-driven code associated with at least some of the components, the event-driven code being executed by the client-side computer which displays the Web page.
2. The Web page document as claimed in claim 1, wherein the components include database-related components designed to display data from a database accessible to a server-side computer, and the event-driven code causing creation of information requests which are sent to the server-side computer, resulting in the client-side computer receiving information corresponding to the information requests and displaying the information in conjunction with the database-related components.
3. The Web page document as claimed in claim 1, wherein a component of the components is associated with report generation code which, when executed by the client-side computer, creates a report document which includes information associated with the Web page.
4. A Web page development apparatus comprising:
a monitor for displaying a Web page for viewing by a developer, wherein the Web page is defined by a Web page document;
a user input means for enabling the developer to input information relating to the development of the Web page; and
a processor means, coupled to the monitor and the user input means, the processor means for initializing and executing a Web page development tool, causing the Web page to be displayed on the monitor, receiving the information from the user input means, and causing modifications to the Web page document based on the information, wherein the modifications include incorporating, into the Web page document, event-driven code associated with one or more Web page components.
5. The Web page development apparatus as claimed in claim 4, further comprising a communication means, coupled to the processor means, wherein the communication means is used to send the Web page document to a server-side computer.
6. The Web page development apparatus as claimed in claim 4, further comprising a data storage means, coupled to the processor means, wherein the data storage means is used to store the Web page document.
7. The Web page development apparatus as claimed in claim 4, further comprising a means for encrypting, coupled to the processor means, wherein the means for encrypting is used to encrypt the Web page document.
8. A server apparatus comprising:
at least one communication means which receives a first message from, and sends a second message to, a client-side computer, wherein the first message includes an information request generated by event-driven code included in a Web page document executed by the client-side computer, and the second message includes stored information accessible to the server apparatus; and
at least one processor means, coupled to the at least one communication means, for processing the information request to identify the stored information, for creating the second message which includes the stored information, and for causing the second message to be sent to the client-side computer so that the client-side computer can display the stored information in response to execution of the event-driven code.
9. A server apparatus as claimed in claim 8, further comprising a data storage means, coupled to the processor means, wherein the data storage means is used to store the stored information.
10. A client apparatus comprising:
a monitor which displays a Web page defined by a Web page document executed by the client apparatus;
a communication means which sends first messages to, and receives second messages from, a server-side computer; and
a processor means, coupled to the monitor and the modem, which executes the Web page document; including execution of event-driven code included within the Web page document.
11. The client apparatus as claimed in claim 10, further comprising an encryption means, coupled to the processor means, for encrypting the first messages.
12. The client apparatus as claimed in claim 10, further comprising a decryption means, coupled to the processor means, for decrypting the second messages.
13. The client apparatus as claimed in claim 10, further comprising a data storage means, coupled to the processor means, for storing information associated with the Web page.
14. A method for developing Web pages comprising the steps of:
creating a page document which defines a Web page;
receiving inputs from a developer, wherein at least some of the inputs indicate that a component should be added to the Web page; and
editing the page document, in response to the inputs, wherein editing the page document includes adding event-driven code to the page document, the event-driven code being code being associated with the component and including code which is executed by a client-side computer.
15. The method as claimed in claim 14, wherein at least some of the inputs indicate that previously-created event-driven code should be edited, the method further comprising the step of editing the previously-created event-driven code to create new code which is added to the page document.
16. The method as claimed in claim 14, wherein at least some of the inputs indicate that a property of the component should have a particular value, the method further comprising the step of modifying the event-driven code to specify the particular value.
17. The method as claimed in claim 14, further comprising the step of sending the page document to a server-side computer.
18. The method as claimed in claim 17, further comprising the step of encrypting the page document prior to performing the step of sending the page document to the server-side computer.
19. The method as claimed in claim 14, wherein at least some of the inputs indicate that the component should be linked with a second component of a second page document, the method further comprising the step of adding linking code to the page document which, when executed, will cause a second Web page associated with the second page document to update automatically when the second Web page is displayed along with the first Web page.
20. A method for providing access to stored information comprising the steps of:
receiving a request from a client-side computer, wherein the information request was generated in response to execution, by the client-side computer, of event-driven code included within a Web page document;
processing the request to identify stored information corresponding to the request;
creating a message which includes the stored information; and
sending the message to the client-side computer so that the client-side computer can display the stored information in response to execution of the event-driven code.
21. The method as claimed in claim 20, wherein the request is a request for a second Web page document, the step of processing includes the step of identifying the stored information as the second Web page document, and the step of creating the message includes the step of including the second Web page document within the message.
22. The method as claimed in claim 21, further comprising the steps of:
determining whether a user of the client-side computer has rights to access the second Web page document; and,
if the user does not have the rights, the method bypassing the steps of creating the message and sending the message.
23. The method as claimed in claim 20, wherein the request is a request for data associated with a database, the step of processing includes the steps of identifying the database and obtaining the data from the database, and the step of creating the message includes the step of including the data within the message.
24. The method as claimed in claim 23, further comprising the steps of:
determining whether a user of the client-side computer has rights to access the data; and,
if the user does not have the rights, the method bypassing the steps of creating the message and sending the message.
25. A method for interacting with a Web page displayed on a client-side computer, the method comprising the steps of:
displaying a Web page associated with a Web page document, wherein the Web page document includes event-driven code; and
executing the event-driven code included within the Web page document.
26. The method as claimed in claim 25, wherein the step of executing the event-driven code is performed in response to receiving input.
27. The method as claimed in claim 26, wherein the input indicates that a second Web page has been requested, the method further comprising the step of requesting the second Web page from a server-side computer.
28. The method as claimed in claim 27, further comprising the steps of receiving and displaying the second Web page from the server-side computer.
29. The method as claimed in claim 28, wherein the first Web page and the second Web page have a first-page linked component and a second-page linked component which are linked between the first Web page and the second Web page.
30. The method as claimed in claim 29, further comprising the steps of:
receiving additional input which indicates that the user wishes the first Web page to display additional data associated with the first-page linked component;
creating an information request which requests the additional data and which requests linked data associated with the second-page linked component;
sending the information request to the server-side computer;
receiving the additional data and the linked data;
displaying the additional data in conjunction with the first-page linked component; and
displaying the linked data in conjunction with the second-page linked component.
31. The method as claimed in claim 26, wherein the input indicates that data has been requested, the method further comprising the steps of requesting the data from a server-side computer.
32. The method as claimed in claim 31, further comprising the steps of receiving and displaying the data from the server-side computer, wherein the data is displayed in conjunction with a database-related component on the Web page.
33. The method as claimed in claim 32, further comprising the step of updating state variables stored on the client-side computer, wherein the state variables indicate which records, in a database associated with the data, include data which should be accessed next in the event that the client-side computer receives an additional request for data from the user.
34. The method as claimed in claim 26, wherein the input indicates that the user wishes to store the Web page and associated data on the client-side computer, the method further comprising the step of storing the Web page and the associated data on the client-side computer.
35. The method as claimed in claim 34, further comprising the steps of:
determining whether the Web page and the associated data are allowed to be stored on the client-side computer; and,
if the Web page and the associated data are not allowed to be stored on the client-side computer, bypassing the step of storing the Web page and the associated data.
36. The method as claimed in claim 25, further comprising the steps of:
creating, based on the event-driven code, an information request;
sending the information request to a server-side computer;
receiving, from the server-side computer, a message which includes stored information corresponding to the information request; and
displaying the stored information in response to execution of the event-driven code.
37. A system for Web page development, deployment, download, and execution comprising:
a Web page development computer having a first processor means, a first monitor, a first data storage means, a first user input means, and a first communication means, wherein the first processor means initializes a page development tool with which a human developer, using the first user input means, creates a Web page document by placing a component on a Web page displayed on the first monitor, upon which the page development tool retrieves code corresponding to the component from the first data storage means, gathers database information if the component is a database-related component, creates linking code if the human developer indicates that the database-related component should be linked to a second database-related component on a second Web page, and places the code, database information, and linking code in the Web page document, and when the human developer indicates that the Web page defined by the Web page document should be deployed, the Web page development computer, via the first communication means, sends the Web page document to a server-side computer over a first network;
the server-side computer having at least one communication means, a second processor means, and a second data storage means, wherein the Web page document is received off the first network via the at least one communication means and is stored in the second data storage means, and, when a client-side computer requests the Web page document, the server-side computer retrieves the Web page document from the second data storage means and sends, via the at least one communication means, the Web page document to the client-side computer over a second network which could be the first network, and, when the Web page on the client-side computer requests data from a database, the server-side computer retrieves and sends the data, via the at least one communication means, to the client-side computer; and
the client-side computer having a third processor means, a second monitor, a third data storage means, a second user input means, and a second communication means, wherein the third processor means initializes a browser which requests, via the second communication means, the Web page document from the server-side computer, and, after the second communication means receives the Web page document, the third processor means enables the Web page corresponding to the Web page document to be displayed via the second monitor, and, if the Web page includes the database-related component, the processor executes the code corresponding to the database-related component, causing the client-side computer to send a data request, via the third communication means, to the server-side computer over the second network, and, after receiving data corresponding to the request, the processor causes the data to be displayed within the database-related component on the Web page and stores state variables, for use if additional data is requested, which indicate which data has been displayed, and, if the database-related component is linked to the second database-related component, the third processor executes the linking code, and, if the human user requests that the Web page document be stored locally on the client-side computer, the third processor causes the Web page document, the data and the additional data, and the state variables to be stored in the third data storage means so that the human user can modify the data and the additional data offline, reconnect to the server-side computer at a later time, and download modified data to the server-side computer which would then modify the database using the modified data.
US10/635,084 1999-01-15 2003-08-05 Method and system for database-driven, scalable web page development, deployment, download, and execution Abandoned US20040143591A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US10/635,084 US20040143591A1 (en) 1999-01-15 2003-08-05 Method and system for database-driven, scalable web page development, deployment, download, and execution

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/231,123 US6631512B1 (en) 1999-01-15 1999-01-15 Method and system for database-driven, scalable web page development, deployment-download, and execution
US10/635,084 US20040143591A1 (en) 1999-01-15 2003-08-05 Method and system for database-driven, scalable web page development, deployment, download, and execution

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US09/231,123 Continuation US6631512B1 (en) 1999-01-15 1999-01-15 Method and system for database-driven, scalable web page development, deployment-download, and execution

Publications (1)

Publication Number Publication Date
US20040143591A1 true US20040143591A1 (en) 2004-07-22

Family

ID=22867823

Family Applications (2)

Application Number Title Priority Date Filing Date
US09/231,123 Expired - Fee Related US6631512B1 (en) 1999-01-15 1999-01-15 Method and system for database-driven, scalable web page development, deployment-download, and execution
US10/635,084 Abandoned US20040143591A1 (en) 1999-01-15 2003-08-05 Method and system for database-driven, scalable web page development, deployment, download, and execution

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US09/231,123 Expired - Fee Related US6631512B1 (en) 1999-01-15 1999-01-15 Method and system for database-driven, scalable web page development, deployment-download, and execution

Country Status (8)

Country Link
US (2) US6631512B1 (en)
EP (1) EP1145151B1 (en)
AT (1) ATE252747T1 (en)
AU (1) AU768423B2 (en)
CA (1) CA2358531A1 (en)
DE (1) DE60006065T2 (en)
ES (1) ES2212768T3 (en)
WO (1) WO2000042528A1 (en)

Cited By (10)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20060271671A1 (en) * 2004-09-14 2006-11-30 Hansen Eric J System and method for optimizing website visitor actions
US20070050753A1 (en) * 2005-08-24 2007-03-01 International Business Machines Corporation System and method for generating content rules for a website
US20070232333A1 (en) * 2006-03-30 2007-10-04 Sap Ag Method and system for providing work related information in a mobile environment
US20080034062A1 (en) * 1999-10-28 2008-02-07 Modavox, Inc. Method and code module for adding function to a web page
US20080263142A1 (en) * 2007-04-20 2008-10-23 Computer Associates Think, Inc. Meta Data Driven User Interface System and Method
US20090006543A1 (en) * 2001-08-20 2009-01-01 Masterobjects System and method for asynchronous retrieval of information based on incremental user input
US20090019357A1 (en) * 2007-04-27 2009-01-15 Bea Systems, Inc. Web based application constructor using page components accessible by url
US20100100585A1 (en) * 2008-10-19 2010-04-22 Ergin Guney Web Application Framework Method Enabling the Creation of Applications That Provide an Interface With Clients That Is Independent of Scripting Capability
US20100100584A1 (en) * 2008-10-19 2010-04-22 Ergin Guney Web Application Framework Method Enabling Optimum Rendering Performance on a Client Based Upon Detected Parameters of the Client
US20110041094A1 (en) * 2007-06-09 2011-02-17 Julien Robert Browsing or Searching User Interfaces and Other Aspects

Families Citing this family (49)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8418131B2 (en) * 1998-11-25 2013-04-09 Helmut Emmelmann Interactive server side components
US6714219B2 (en) * 1998-12-31 2004-03-30 Microsoft Corporation Drag and drop creation and editing of a page incorporating scripts
US6631512B1 (en) * 1999-01-15 2003-10-07 Gillis E Onyeabor Method and system for database-driven, scalable web page development, deployment-download, and execution
GB2361341A (en) * 2000-03-03 2001-10-17 Knowhow Systems Ltd Document creation and delivery
US20090100168A1 (en) * 2000-05-24 2009-04-16 Harris Scott C Automatic location detection in a computing environment
CA2322594C (en) * 2000-10-06 2005-01-11 Ibm Canada Limited-Ibm Canada Limitee System and method for managing web page components
US7346842B1 (en) 2000-11-02 2008-03-18 Citrix Systems, Inc. Methods and apparatus for incorporating a partial page on a client
US7051084B1 (en) * 2000-11-02 2006-05-23 Citrix Systems, Inc. Methods and apparatus for regenerating and transmitting a partial page
US6823359B1 (en) * 2000-11-21 2004-11-23 Pfs Trader Tools, Llc System and method for continually updating dynamic data
US7130889B2 (en) * 2000-11-29 2006-10-31 Ncr Corporation Method of printing information by a network kiosk
US20020105548A1 (en) 2000-12-12 2002-08-08 Richard Hayton Methods and apparatus for creating a user interface using property paths
EP1215547B1 (en) * 2000-12-15 2007-01-03 Siemens Aktiengesellschaft Encryption of control programs
US20020078103A1 (en) * 2000-12-20 2002-06-20 Gorman William Phillip Wizard development kit
EP2267619A1 (en) * 2000-12-22 2010-12-29 Research in Motion Limited Information browser system and method for a wireless communication device
US7165088B2 (en) * 2001-01-24 2007-01-16 Microsoft Corporation System and method for incremental and reversible data migration and feature deployment
US7739590B2 (en) * 2001-03-01 2010-06-15 Accenture Llp Automatic generation of personal homepages for a sales force
US7150001B1 (en) * 2001-03-19 2006-12-12 Microsoft Corporation System and method to facilitate design-time component discovery
US8180871B2 (en) * 2001-05-23 2012-05-15 International Business Machines Corporation Dynamic redeployment of services in a computing network
US6862620B2 (en) * 2001-06-07 2005-03-01 International Business Machines Corporation Web page monitoring system and methods therefor
US7406664B1 (en) * 2001-06-15 2008-07-29 Microsoft Corporation System for integrating HTML Web site views into application file dialogs
WO2003003642A2 (en) * 2001-06-29 2003-01-09 Ve Enterprises Llc System and method for editing web pages in a client/server architecture
EP1291769A3 (en) * 2001-08-20 2004-10-06 Müller und Prange oHG Datacommunicationsystem and central computer usable in a datacommunicationsystem
EP1296251A1 (en) * 2001-09-19 2003-03-26 Kreter, Martin Document creation system
US7278161B2 (en) 2001-10-01 2007-10-02 International Business Machines Corporation Protecting a data processing system from attack by a vandal who uses a vulnerability scanner
US20030135821A1 (en) * 2002-01-17 2003-07-17 Alexander Kouznetsov On line presentation software using website development tools
US7194473B1 (en) * 2002-02-15 2007-03-20 Oracle International Corporation Application platform development environment
US7444410B1 (en) * 2002-02-15 2008-10-28 Oracle International Corporation Application platform execution environment
US20030187968A1 (en) * 2002-03-28 2003-10-02 Gateway, Inc. Layer menus and multiple page displays for web GUI
US7200645B2 (en) 2002-06-26 2007-04-03 International Business Machines Corporation Running dynamic web pages off-line with a wizard
US7249313B2 (en) 2002-06-26 2007-07-24 International Business Machines Corporation Creating and utilizing a wizard to capture an application's interdependencies between web pages and data accesses for running the application's downloadable dynamic web pages off-line
US8046682B2 (en) * 2002-12-02 2011-10-25 Siebel Systems, Inc. Method and system for accessing business applications via a standard interface
US7958186B2 (en) * 2003-03-14 2011-06-07 Sap Ag Restructuring integration system
JP2005122377A (en) * 2003-10-15 2005-05-12 Konica Minolta Business Technologies Inc Control device, control indicator, control program, and control indication program
US8527943B1 (en) * 2004-02-12 2013-09-03 Raju V. Chiluvuri System and method of application development
CN102981815B (en) * 2005-03-03 2017-05-31 汤姆森路透社全球资源公司 System and method for implementing business procedure application program
US7881999B2 (en) * 2005-12-29 2011-02-01 Sap Ag System and method for generating a reimbursement request
US7783985B2 (en) * 2006-01-04 2010-08-24 Citrix Systems, Inc. Systems and methods for transferring data between computing devices
US9454734B2 (en) 2006-02-21 2016-09-27 International Business Machines Corporation Heuristic assembly of a component based application
US20080120723A1 (en) * 2006-10-31 2008-05-22 Bellsouth Intellectual Property Corporation Methods, systems and computer program products for authorizing access to features of software applications
US8095910B2 (en) * 2007-04-10 2012-01-10 Microsoft Corporation Interruptible client-side scripts
US8190707B2 (en) 2007-10-20 2012-05-29 Citrix Systems, Inc. System and method for transferring data among computing environments
US9635135B1 (en) 2008-04-21 2017-04-25 United Services Automobile Association (Usaa) Systems and methods for handling replies to transaction requests
CN101350822B (en) * 2008-09-08 2011-06-15 南开大学 Method for discovering and tracing Internet malevolence code
US20100169169A1 (en) * 2008-12-31 2010-07-01 International Business Machines Corporation System and method for using transaction statistics to facilitate checkout variance investigation
US8515979B2 (en) * 2010-06-18 2013-08-20 Verizon Patent And Licensing, Inc. Cross application execution service
KR101689745B1 (en) * 2010-09-06 2016-12-27 삼성전자주식회사 Web browsing system and method for rendering dynamic resource URI of script
US8689181B2 (en) * 2010-11-23 2014-04-01 Axeda Corporation Scripting web services
JP6085897B2 (en) * 2012-10-09 2017-03-01 ▲ホア▼▲ウェイ▼技術有限公司Huawei Technologies Co.,Ltd. Method and system for causing a web application to acquire database changes
CN116361748B (en) * 2023-04-03 2023-09-15 武汉金力软件有限公司 Software supply chain safety detection method and device

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5835712A (en) * 1996-05-03 1998-11-10 Webmate Technologies, Inc. Client-server system using embedded hypertext tags for application and database development
US5961601A (en) * 1996-06-07 1999-10-05 International Business Machines Corporation Preserving state information in a continuing conversation between a client and server networked via a stateless protocol
US6225995B1 (en) * 1997-10-31 2001-05-01 Oracle Corporaton Method and apparatus for incorporating state information into a URL
US6353839B1 (en) * 1998-04-30 2002-03-05 Openwave Systems Inc. Method for inline variables management in a hypermedia display language
US6397217B1 (en) * 1999-03-04 2002-05-28 Futuretense, Inc. Hierarchical caching techniques for efficient dynamic page generation
US6460071B1 (en) * 1997-11-21 2002-10-01 International Business Machines Corporation System and method for managing client application state in a stateless web browser environment
US6631512B1 (en) * 1999-01-15 2003-10-07 Gillis E Onyeabor Method and system for database-driven, scalable web page development, deployment-download, and execution

Family Cites Families (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5784058A (en) * 1996-05-28 1998-07-21 Sun Microsystems, Inc. User-controllable persistent browser display pages
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
US6247056B1 (en) * 1997-02-03 2001-06-12 Oracle Corporation Method and apparatus for handling client request with a distributed web application server
US6105012A (en) 1997-04-22 2000-08-15 Sun Microsystems, Inc. Security system and method for financial institution server and client web browser
US6085120A (en) * 1997-11-17 2000-07-04 International Business Machines Corporation Data system processing and method for creating application extension
US6529910B1 (en) * 1998-09-18 2003-03-04 David E. Fleskes Apparatus and method for automatically generating worldwide web pages based on real world domain data

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5835712A (en) * 1996-05-03 1998-11-10 Webmate Technologies, Inc. Client-server system using embedded hypertext tags for application and database development
US5961601A (en) * 1996-06-07 1999-10-05 International Business Machines Corporation Preserving state information in a continuing conversation between a client and server networked via a stateless protocol
US6225995B1 (en) * 1997-10-31 2001-05-01 Oracle Corporaton Method and apparatus for incorporating state information into a URL
US6460071B1 (en) * 1997-11-21 2002-10-01 International Business Machines Corporation System and method for managing client application state in a stateless web browser environment
US6353839B1 (en) * 1998-04-30 2002-03-05 Openwave Systems Inc. Method for inline variables management in a hypermedia display language
US6631512B1 (en) * 1999-01-15 2003-10-07 Gillis E Onyeabor Method and system for database-driven, scalable web page development, deployment-download, and execution
US6397217B1 (en) * 1999-03-04 2002-05-28 Futuretense, Inc. Hierarchical caching techniques for efficient dynamic page generation

Cited By (27)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7783721B2 (en) * 1999-10-28 2010-08-24 Augme Technologies, Inc. Method and code module for adding function to a web page
US8539043B2 (en) 1999-10-28 2013-09-17 Augme Technologies, Inc. System and method for adding targeted content in a web page
US8458294B2 (en) 1999-10-28 2013-06-04 Augme Technologies, Inc. System and method for adding targeted content in a Web page
US8219642B2 (en) 1999-10-28 2012-07-10 Augme Technologies, Inc. System and method for adding targeted content in a web page
US20080034062A1 (en) * 1999-10-28 2008-02-07 Modavox, Inc. Method and code module for adding function to a web page
US20110153415A1 (en) * 1999-10-28 2011-06-23 Augme Technologies, Inc. System and method for adding targeted content in a web page
US20090006543A1 (en) * 2001-08-20 2009-01-01 Masterobjects System and method for asynchronous retrieval of information based on incremental user input
WO2006031402A3 (en) * 2004-09-14 2007-03-01 Sitespect Inc System and method for optimizing website visitor actions
US8782200B2 (en) * 2004-09-14 2014-07-15 Sitespect, Inc. System and method for optimizing website visitor actions
US20060271671A1 (en) * 2004-09-14 2006-11-30 Hansen Eric J System and method for optimizing website visitor actions
US9632758B2 (en) 2005-08-24 2017-04-25 International Business Machines Corporation System and method for generating content rules for a website
US20070050753A1 (en) * 2005-08-24 2007-03-01 International Business Machines Corporation System and method for generating content rules for a website
US20070232333A1 (en) * 2006-03-30 2007-10-04 Sap Ag Method and system for providing work related information in a mobile environment
US20080263142A1 (en) * 2007-04-20 2008-10-23 Computer Associates Think, Inc. Meta Data Driven User Interface System and Method
US9830309B2 (en) * 2007-04-27 2017-11-28 Oracle International Corporation Method for creating page components for a page wherein the display of a specific form of the requested page component is determined by the access of a particular URL
US20090019357A1 (en) * 2007-04-27 2009-01-15 Bea Systems, Inc. Web based application constructor using page components accessible by url
US10229097B2 (en) 2007-04-27 2019-03-12 Oracle International Corporation Enterprise web application constructor system and method
US11010541B2 (en) 2007-04-27 2021-05-18 Oracle International Corporation Enterprise web application constructor system and method
US11675968B2 (en) 2007-04-27 2023-06-13 Oracle Iniernational Corporation Enterprise web application constructor system and method
US20110041094A1 (en) * 2007-06-09 2011-02-17 Julien Robert Browsing or Searching User Interfaces and Other Aspects
US8707192B2 (en) 2007-06-09 2014-04-22 Apple Inc. Browsing or searching user interfaces and other aspects
US8713462B2 (en) 2007-06-09 2014-04-29 Apple Inc. Browsing or searching user interfaces and other aspects
US8732600B2 (en) * 2007-06-09 2014-05-20 Apple Inc. Browsing or searching user interfaces and other aspects
US10289683B2 (en) 2007-06-09 2019-05-14 Apple Inc. Browsing or searching user interfaces and other aspects
US8458246B2 (en) * 2008-10-19 2013-06-04 Research In Motion Limited Web application framework method enabling the creation of applications that provide an interface with clients that is independent of scripting capability
US20100100584A1 (en) * 2008-10-19 2010-04-22 Ergin Guney Web Application Framework Method Enabling Optimum Rendering Performance on a Client Based Upon Detected Parameters of the Client
US20100100585A1 (en) * 2008-10-19 2010-04-22 Ergin Guney Web Application Framework Method Enabling the Creation of Applications That Provide an Interface With Clients That Is Independent of Scripting Capability

Also Published As

Publication number Publication date
EP1145151B1 (en) 2003-10-22
EP1145151A1 (en) 2001-10-17
AU2728300A (en) 2000-08-01
ES2212768T3 (en) 2004-08-01
ATE252747T1 (en) 2003-11-15
DE60006065T2 (en) 2004-07-08
CA2358531A1 (en) 2000-07-20
US6631512B1 (en) 2003-10-07
AU768423B2 (en) 2003-12-11
DE60006065D1 (en) 2003-11-27
WO2000042528A1 (en) 2000-07-20

Similar Documents

Publication Publication Date Title
US6631512B1 (en) Method and system for database-driven, scalable web page development, deployment-download, and execution
US7379977B2 (en) System and method for display of multiple electronic pages
US7299422B2 (en) System and method for transferring personalization information among computer systems
US5966441A (en) Method and apparatus for creating a secure autonomous network entity of a network component system
US6571245B2 (en) Virtual desktop in a computer network
US6195696B1 (en) Systems, methods and computer program products for assigning, generating and delivering content to intranet users
JP5305581B2 (en) Method, portal, and computer program for exchanging portlet configuration data
US7370287B2 (en) Dynamic controls for use in computing applications
US6163878A (en) Method and system for designing, generating and storing applications
US6279030B1 (en) Dynamic JAVA™ class selection and download based on changeable attributes
US6757868B1 (en) Programmatic switching of arbitrary HTML forms
US20020065849A1 (en) Method and system for integrating network-based functionality into productivity applications employing word processing documents
EP1438649A1 (en) Methods and apparatus for enabling keyboard accelerators in applications implemented via a browser
JPH0926970A (en) Method and apparatus for execution by computer for retrievalof information
JP2003509785A (en) Method and system for delivering remotely stored applications and information
CA2299035A1 (en) System and method for sharing bookmark information
US6931407B1 (en) System for using a floating pallet for a digital asset management system in a plurality of different applications
US7124411B1 (en) Method for using a floating pallet for a digital asset managements system in a plurality of different applications
CA2479629C (en) Systems, methods and computer program products for assigning, generating and delivering content to intranet users
Collings Red Hat Enterprise Linux 4 for Dummies
Ebbers et al. Build a Portal with Domino
WO2000051033A9 (en) Dynamic sites
Moore More. NET Secrets
Dunn Application development with Hypertext Markup Language(HTML)

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION