WO1998054641A1 - Method for client-server communications through a minimal interface - Google Patents

Method for client-server communications through a minimal interface Download PDF

Info

Publication number
WO1998054641A1
WO1998054641A1 PCT/US1998/010187 US9810187W WO9854641A1 WO 1998054641 A1 WO1998054641 A1 WO 1998054641A1 US 9810187 W US9810187 W US 9810187W WO 9854641 A1 WO9854641 A1 WO 9854641A1
Authority
WO
WIPO (PCT)
Prior art keywords
server
client
links
continuation
web
Prior art date
Application number
PCT/US1998/010187
Other languages
French (fr)
Inventor
Paul Graham
Original Assignee
Viaweb, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Viaweb, Inc. filed Critical Viaweb, Inc.
Priority to AU74967/98A priority Critical patent/AU7496798A/en
Publication of WO1998054641A1 publication Critical patent/WO1998054641A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4482Procedural
    • G06F9/4484Executing subprograms
    • G06F9/4486Formation of subprogram jump address

Definitions

  • the invention relates to a method for simulating subroutine calls in applications that communicate with a client (i.e., a user) through a minimal interface.
  • the invention relates to the use of continuations to simulate subroutine calls in a program that interacts with the user through successive Web pages.
  • the invention involves a new use of an existing technology called continuations.
  • f takes an argument x and returns g(x) + 1, and g returns twice its argument. So, calling f(n) returns 2n + 1.
  • the two functions could be expressed in Scheme as follows:
  • Scheme is an IEEE standard language often used to describe algorithms. Scheme is used here, instead of the more conventional Pascal-like pseudocode, because it has some additional needed abstractions. Scheme is a prefix language, so x + 1 is expressed as (+ x 1). In more conventional pseudocode, f and g might be expressed as:
  • the function g is a subroutine.
  • the value g returns gets sent back to a calculation in process in f. After g sends control back to f, one is added to the value g returned, and then that value is returned by f.
  • Web pages are usually sent from one machine (e.g., a server) to another (e.g., a client).
  • the two machines can be the same, but typically are separate machines that communicate via a network.
  • the term "server” can mean both the physical machine that is sending web pages and the software on the machine that responds to requests for pages.
  • the client requests a web page from the server using a url (i.e., Universal Resource
  • a url has three parts: the protocol by which the client wants to talk to the server, the name of the server, and a third part, referred to herein as the "request," that indicates what the client wants the server to send it.
  • the following is an example of a url expressed in a form commonly used today: http://www.foo.com/bar.html. In this url, "bar.html” is the request.
  • Most servers would interpret "bar.html” as a request for an html file stored on disk, and would respond by reading the file and sending it to the client. But how to respond to a request is entirely up to the server.
  • a server could equally well choose to interpret "bar.html” as a request to generate a web page containing the current time.
  • a web page usually contains some amount of text plus html operators specifying how to display the page on the screen.
  • the client software e.g. a browser
  • the aspect of the display of web pages relevant to the subject application is the display of links and forms.
  • a link is usually a combination of text and/or an image, plus a url.
  • Typical client software will display the text or image with an underline, an outline, or some other indication that the text is active. The user can indicate that he wants to follow that link usually by clicking on it with a mouse.
  • the phrase "to click on a link” is used herein as a general term to mean whatever method the user uses to indicate that he wants to follow a link.
  • the request in the associated url is sent to the web server mentioned in that url.
  • the request will cause the server to send the client another web page, which will in turn contain other links, resulting in an ongoing series of requests from the client interleaved with web pages sent in reply by the server(s).
  • a form is like a link in that it includes places (e.g., "buttons") where the user can click to send a request to a server, but it can also include "fields", through which the user can send additional information along with the request.
  • a form field might be a menu of choices, a box in which the user can type text, or a button that the user can toggle on or off.
  • link is used herein to include both links and forms, along with any other element of a web page that has an associated url, and which a user can click on to send the request in the url to the server mentioned therein.
  • the present invention features a method for communicating between a client and a server through a limited communication interface.
  • the communication interface may be the word wide web.
  • the sever may be a web server, and the client and server may reside in the same computer platform.
  • limited communication interface refers to an interface that, in general, comprises links and forms. More particularly, the interface processes successive iterations in which the sever sends a set of key to the client and the client chooses one of the keys and sends it back to server.
  • the method also includes providing continuation functions associated with each of a plurality of links.
  • the continuation function may refers to another continuation function.
  • Each of the plurality of links may represent a parameter in a web page.
  • the plurality of links includes a key that is associated with one of the continuation functions.
  • the plurality of links are sent through the limited communication interface from the server to the client.
  • a selected one of the plurality of links is sent from the client to the server.
  • the continuation function associated with the selected link in the server is then executed.
  • the continuation function may be executed at the server.
  • the present invention also features a method for communicating between a plurality of clients and a web server through a limited communication interface.
  • the method includes providing continuation functions associated with each of a plurality of links.
  • the plurality of links is sent through the limited communication interface from the server to the plurality of clients.
  • a selected one of the plurality of links is sent from one of the plurality of clients to the server.
  • the continuation function associated with the selected link in the server is executed.
  • FIG. 1 is a block diagram of a client-server computing system incorporating the principles of the invention.
  • FIG. 2 is an illustration of successive Web pages containing links that a user can click on to send commands back to the server.
  • FIG. 3 is a flow chart illustrating the use of continuations to simulate subroutine calls in a program that interacts with the user through successive Web pages
  • a distributed computing environment 30 includes clients 32 (e.g., a computer, fax machine, web-enabled television) connected to the Internet 34 (or to an intranet) via a network service provider 36.
  • clients 32 e.g., a computer, fax machine, web-enabled television
  • a users can manipulate a client 32 via a user interface (not shown).
  • Each client 32 can communicate with other clients or with web servers 38, 40 (e.g., game sites, video sites, corporate sites, libraries, electronic publishing) through the network service provider 36.
  • the web server 40 includes an application program 42 and a database 44.
  • the invention can reside in the web server 40 or in one or more clients 32.
  • the invention relates to a novel use for continuations to solve a problem that has become especially important with the rise in popularity of the World Wide Web.
  • continuations are used to simulate subroutine calls in a program that interacts with the client 32 through successive Web pages.
  • the invention relates to the display of successive Web pages 48, 50, 52.
  • the pages contain links 48a, 48b, 50a, 50b, 52a, 52b that the user can click on to send commands back to the server 40.
  • the request part of each link includes the key of the corresponding piece of code.
  • the server 40 responds by executing the code stored in its table under that key. This code will usually end by sending another page to the client 32, containing its own links, each associated with more code on the server 40. In this way, the client 32 and the server 40 maintain an ongoing conversation of button clicks interleaved with Web pages sent in response.
  • a user is looking at a page provided by the server displaying a series of parameters he might want to change (54).
  • some of the parameters are colors, and are shown as swatches representing the current value of the parameter, plus a Select button that can be clicked on to select a new value. 2.
  • Step 2 looks to the user like a subroutine call. It looks to the user as if he were merely returning to the page shown in Step 1. But what actually happens inside the server is that the code associated with each of the links generated in Step 2 (i.e., the possible colors) has as its continuation another piece of code that will generate the same page that was generated in Step 1. Because continuations can refer to other continuations, it is possible to simulate nested subroutine calls as deep as necessary.

Abstract

The concept of a subroutine call is one of the basic ideas in computer science. The invention relates to a technique for achieving the effect of subroutine calls in certain situations where they would not otherwise be possible. The invention allows for the simulation of subroutine calls in applications where the interaction with a client is reduced to successive iterations in which the application sends the client a set of keys, and the client chooses one of the keys and sends it back to the application (i.e., a minimal interface). In one implementation, the invention is used to simulate subroutine calls in an application running on a Web server and communicating with the client through successive Web pages.

Description

METHOD FOR CLIENT-SERVER COMMUNICATIONS THROUGH A MINIMAL INTERFACE
FIELD OF THE INVENTION
In general, the invention relates to a method for simulating subroutine calls in applications that communicate with a client (i.e., a user) through a minimal interface. In particular, the invention relates to the use of continuations to simulate subroutine calls in a program that interacts with the user through successive Web pages.
BACKGROUND OF THE INVENTION
The invention involves a new use of an existing technology called continuations. Suppose there are two functions f and g, where f takes an argument x and returns g(x) + 1, and g returns twice its argument. So, calling f(n) returns 2n + 1. The two functions could be expressed in Scheme as follows:
(define (f x)
(+ (g χ) i))
(define (g x) (* 2)) Scheme is an IEEE standard language often used to describe algorithms. Scheme is used here, instead of the more conventional Pascal-like pseudocode, because it has some additional needed abstractions. Scheme is a prefix language, so x + 1 is expressed as (+ x 1). In more conventional pseudocode, f and g might be expressed as:
Function f (x) return g(x) + 1
Function g (x) return x * 2.
The function g is a subroutine. The value g returns gets sent back to a calculation in process in f. After g sends control back to f, one is added to the value g returned, and then that value is returned by f.
It is possible to transform any pair of functions like f and g so that nothing has to happen in f after g returns. This can be done by packing into another function, c, everything that is supposed to happen in f after g returns, and passing c as an additional argument to g. The additional argument, c, is called a continuation. The function g is then rewritten so that instead of returning the value it would have returned, it returns the result of passing it to the continuation. For example, the original f and g could be rewritten as:
(define (£2 x) (g2 x (lambda (y) (+ y 1))))
(define (g2 x c) (c (* x 2))).
It is noted that, in Scheme, "(lambda (x) (+ x 1))" means a function that takes one argument and returns that plus one. The function f2 takes one argument, a number x. It calls g2 with two arguments: x, and a function that returns its argument plus one. The work that used to be done in f after control returned from g is now packed up in a function and sent as an additional argument to g2. The function g2 takes two arguments, a number x and a function c. It returns the result of calling c on x * 2. In this case, c is a function that adds one to its argument, so g2 returns (and in turn f2 returns) 2x + 1, just as f did in the previous example. Any ordinary program can be transformed to use continuations, so that nothing ever happens in a calling function after control returns from a subroutine. The form of the program that results from this transformation is called "continuation-passing style." This technique can be applied to subroutine calls to any depth. For example, the functions:
(define (f x) (+ (g x) l))
(define (g x) (* (h x) 2))
(define (h x) (- x 3)) Can be transformed into:
(define (f2 x) (g2 x (lambda (y) (+ y l))))
(define (g2 x c) (h2 x (lambda (y) (c (* y 2))))) (define (h2 x c)
(c (- x 3))) This technique was originally developed by compiler designers, who found that transforming programs into continuation-passing style could make them easier to optimize. Papers have also been written showing that continuations could be used to implement coroutines and nondeterministic searches. However, applicant is not aware of any commercial applications of either, because there are more efficient ways to implement both.
Web pages are usually sent from one machine (e.g., a server) to another (e.g., a client). The two machines can be the same, but typically are separate machines that communicate via a network. The term "server" can mean both the physical machine that is sending web pages and the software on the machine that responds to requests for pages. The client requests a web page from the server using a url (i.e., Universal Resource
Locator). A url has three parts: the protocol by which the client wants to talk to the server, the name of the server, and a third part, referred to herein as the "request," that indicates what the client wants the server to send it. The following is an example of a url expressed in a form commonly used today: http://www.foo.com/bar.html. In this url, "bar.html" is the request. Most servers would interpret "bar.html" as a request for an html file stored on disk, and would respond by reading the file and sending it to the client. But how to respond to a request is entirely up to the server. A server could equally well choose to interpret "bar.html" as a request to generate a web page containing the current time.
A web page usually contains some amount of text plus html operators specifying how to display the page on the screen. The client software (e.g. a browser) has considerable leeway in deciding how to display the page to the user. The aspect of the display of web pages relevant to the subject application is the display of links and forms.
A link is usually a combination of text and/or an image, plus a url. Typical client software will display the text or image with an underline, an outline, or some other indication that the text is active. The user can indicate that he wants to follow that link usually by clicking on it with a mouse. The phrase "to click on a link" is used herein as a general term to mean whatever method the user uses to indicate that he wants to follow a link. When the user clicks on a link, the request in the associated url is sent to the web server mentioned in that url. Usually, the request will cause the server to send the client another web page, which will in turn contain other links, resulting in an ongoing series of requests from the client interleaved with web pages sent in reply by the server(s). A form is like a link in that it includes places (e.g., "buttons") where the user can click to send a request to a server, but it can also include "fields", through which the user can send additional information along with the request. For example, a form field might be a menu of choices, a box in which the user can type text, or a button that the user can toggle on or off.
The term "link" is used herein to include both links and forms, along with any other element of a web page that has an associated url, and which a user can click on to send the request in the url to the server mentioned therein.
SUMMARY OF THE INVENTION The present invention features a method for communicating between a client and a server through a limited communication interface. The communication interface may be the word wide web. The sever may be a web server, and the client and server may reside in the same computer platform. As used herein, limited communication interface refers to an interface that, in general, comprises links and forms. More particularly, the interface processes successive iterations in which the sever sends a set of key to the client and the client chooses one of the keys and sends it back to server.
The method also includes providing continuation functions associated with each of a plurality of links. The continuation function may refers to another continuation function. Each of the plurality of links may represent a parameter in a web page. The plurality of links includes a key that is associated with one of the continuation functions.
The plurality of links are sent through the limited communication interface from the server to the client. A selected one of the plurality of links is sent from the client to the server. The continuation function associated with the selected link in the server is then executed. The continuation function may be executed at the server. The present invention also features a method for communicating between a plurality of clients and a web server through a limited communication interface. The method includes providing continuation functions associated with each of a plurality of links. The plurality of links is sent through the limited communication interface from the server to the plurality of clients. A selected one of the plurality of links is sent from one of the plurality of clients to the server. The continuation function associated with the selected link in the server is executed. BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 is a block diagram of a client-server computing system incorporating the principles of the invention.
FIG. 2 is an illustration of successive Web pages containing links that a user can click on to send commands back to the server.
FIG. 3 is a flow chart illustrating the use of continuations to simulate subroutine calls in a program that interacts with the user through successive Web pages
DETAILED DESCRIPTION
Referring to FIG. 1, a distributed computing environment 30 includes clients 32 (e.g., a computer, fax machine, web-enabled television) connected to the Internet 34 (or to an intranet) via a network service provider 36. A users can manipulate a client 32 via a user interface (not shown). Each client 32 can communicate with other clients or with web servers 38, 40 (e.g., game sites, video sites, corporate sites, libraries, electronic publishing) through the network service provider 36. The web server 40 includes an application program 42 and a database 44. The invention can reside in the web server 40 or in one or more clients 32.
The invention relates to a novel use for continuations to solve a problem that has become especially important with the rise in popularity of the World Wide Web. In particular, continuations are used to simulate subroutine calls in a program that interacts with the client 32 through successive Web pages. Where a regular piece of desktop software would display successive screens to the user, the invention relates to the display of successive Web pages 48, 50, 52. The pages contain links 48a, 48b, 50a, 50b, 52a, 52b that the user can click on to send commands back to the server 40.
Each time a Web page is generated for the client 32, the code that should be executed for each link that could be clicked on is also generated. Each piece of code is stored in a table 46 on the server 40 and indexed under a unique key. When the page is sent to the client 32, the request part of each link includes the key of the corresponding piece of code. When the user clicks on a link, a key is included in the request sent to the server 40, and the server 40 responds by executing the code stored in its table under that key. This code will usually end by sending another page to the client 32, containing its own links, each associated with more code on the server 40. In this way, the client 32 and the server 40 maintain an ongoing conversation of button clicks interleaved with Web pages sent in response. It is often useful to have subroutine-like behavior in interactive client-server sessions. For example, suppose a user is running ordinary desktop software and, for some reason, wants to select a color. The program he is using will generally call a subroutine that pops up a window where he can select a color. After the user selects the color, the color-selection subroutine returns control, along with the selected color, back to the code that called it. This kind of behavior is easy to achieve in desktop software, where the operating system manages interactions with the user and has built-in support for subroutines. The invention uses continuations to get the same effect in interactive client-server sessions consisting of ordinary Web pages. The key observation is that, when a program is written using continuations, nothing remains to be done after a subroutine returns. Therefore, it does not matter if the subroutine never returns to the calling code. When the code is generated for each link on the page that is sent to the client 32, each piece of code can have an associated continuation. When the user clicks on a link and a piece of code is run, it ends by calling the continuation. There is no actual notion of subroutines. The code does not return control to any calling code. However, because all that would have happened in the calling code is embodied in the continuation, it looks to the user just as if control returned from a subroutine. By way of example, consider the following client-server interaction (FIG. 3): 1. A user is looking at a page provided by the server displaying a series of parameters he might want to change (54). Suppose some of the parameters are colors, and are shown as swatches representing the current value of the parameter, plus a Select button that can be clicked on to select a new value. 2. The user clicks on the Select button of one of the parameters (56), and is then sent a Web page by the server containing a selection of colors that he can click on to choose a new value (58).
3. The user clicks on one of the colors (60), and is sent another page by the server (62), exactly like the one shown in Step 1, except with a new color for the parameter whose Select button he clicked on.
Step 2 looks to the user like a subroutine call. It looks to the user as if he were merely returning to the page shown in Step 1. But what actually happens inside the server is that the code associated with each of the links generated in Step 2 (i.e., the possible colors) has as its continuation another piece of code that will generate the same page that was generated in Step 1. Because continuations can refer to other continuations, it is possible to simulate nested subroutine calls as deep as necessary.
EQUIVALENTS
While the invention has been particularly shown and described with reference to specific preferred embodiments, it should be understood by those skilled in the art that various changes in form and detail may be made therein without departing from the spirit and scope of the invention as defined by the appended claims. For example, although the primary use of the invention has been in server-based applications that use Web pages as their interface, it could equally well be applied in any situation where the interaction between application and client is similarly minimal.

Claims

CLAIMS 1. A method for communicating between a client and a server through a limited communication interface, the method comprising:
a) providing continuation functions associated with each of a plurality of links;
b) sending the plurality of links through the limited communication interface from the server to the client;
c) sending a selected one of the plurality of links from the client to the server; and
d) executing the continuation function associated with the selected link in the server.
2. The method of claim 1 wherein the server is a web sever.
3. The method of claim 1 wherein each of the plurality of links represents a parameter in a web page.
4. The method of claim 1 wherein each of the plurality of links includes a key that is associated with one of the continuation functions.
5. The method of claim 1 wherein the client and the server reside in the same computer platform.
6. The method of claim 1 wherein the continuation function refers to another continuation function.
7. The method of claim 1 wherein the communication interface is the word wide web.
8. The method of claim 1 wherein the step of executing the continuation function associated with the selected link in the server is performed at the server.
9. The method of claim 1 further comprising the step of storing code containing each continuation function in a table that is associated with each link.
10. A method for communicating between a plurality of clients and a web server through a limited communication interface, the method comprising: a) providing continuation functions associated with each of a plurality of links;
b) sending the plurality of links through the limited communication interface from the server to the plurality of clients; and
c) sending a selected one of the plurality of links from one of the plurality of clients to the server; and
d) executing the continuation function associated with the selected link in the server.
PCT/US1998/010187 1997-05-27 1998-05-14 Method for client-server communications through a minimal interface WO1998054641A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU74967/98A AU7496798A (en) 1997-05-27 1998-05-14 Method for client-server communications through a minimal interface

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US08/863,874 US6205469B1 (en) 1997-05-27 1997-05-27 Method for client-server communications through a minimal interface
US08/863,874 1997-05-27

Publications (1)

Publication Number Publication Date
WO1998054641A1 true WO1998054641A1 (en) 1998-12-03

Family

ID=25341984

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1998/010187 WO1998054641A1 (en) 1997-05-27 1998-05-14 Method for client-server communications through a minimal interface

Country Status (3)

Country Link
US (1) US6205469B1 (en)
AU (1) AU7496798A (en)
WO (1) WO1998054641A1 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN100361082C (en) * 2005-08-26 2008-01-09 北京中星微电子有限公司 Method for calling function containing pointer parameter between different operation platforms

Families Citing this family (26)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6195097B1 (en) * 1997-07-08 2001-02-27 International Business Machines Corporation Web-based DCE management
US7801766B2 (en) * 2000-03-31 2010-09-21 You Technology Brand Services, Inc. Method, system, and computer readable medium for facilitating a transaction between a customer, a merchant and an associate
US6662174B2 (en) 2000-04-17 2003-12-09 Brio Software, Inc. Analytical server including metrics engine
US7080090B2 (en) 2000-04-27 2006-07-18 Hyperion Solutions Corporation Allocation measures and metric calculations in star schema multi-dimensional data warehouse
US7167859B2 (en) * 2000-04-27 2007-01-23 Hyperion Solutions Corporation Database security
US7072897B2 (en) * 2000-04-27 2006-07-04 Hyperion Solutions Corporation Non-additive measures and metric calculation
US6732115B2 (en) 2000-04-27 2004-05-04 Hyperion Solutions Corporation Chameleon measure and metric calculation
AU2001261084A1 (en) * 2000-04-27 2001-11-07 Brio Technology, Inc. Method and apparatus for processing jobs on an enterprise-wide computer system
US6748394B2 (en) 2000-04-27 2004-06-08 Hyperion Solutions Corporation Graphical user interface for relational database
US6941311B2 (en) 2000-04-27 2005-09-06 Hyperion Solutions Corporation Aggregate navigation system
US20020161903A1 (en) * 2001-04-30 2002-10-31 Besaw Lawrence M. System for secure access to information provided by a web application
US6714934B1 (en) 2001-07-31 2004-03-30 Logika Corporation Method and system for creating vertical search engines
US7363363B2 (en) * 2002-05-17 2008-04-22 Xds, Inc. System and method for provisioning universal stateless digital and computing services
US7886296B2 (en) 2004-07-22 2011-02-08 Computer Associates Think, Inc. System and method for providing alerts for heterogeneous jobs
US8427667B2 (en) * 2004-07-22 2013-04-23 Ca, Inc. System and method for filtering jobs
US8028285B2 (en) * 2004-07-22 2011-09-27 Computer Associates Think, Inc. Heterogeneous job dashboard
US7984443B2 (en) 2004-07-22 2011-07-19 Computer Associates Think, Inc. System and method for normalizing job properties
US9600216B2 (en) * 2004-07-22 2017-03-21 Ca, Inc. System and method for managing jobs in heterogeneous environments
US8126907B2 (en) * 2004-08-03 2012-02-28 Nextengine, Inc. Commercial shape search engine
US20060197781A1 (en) * 2005-03-03 2006-09-07 Arutunian Ethan B System and method utilizing enhanced imagery and associated overlays
US20060200308A1 (en) * 2005-03-03 2006-09-07 Arutunian Ethan B Server-based interactive enhanced map imagery engine
US20060200382A1 (en) * 2005-03-03 2006-09-07 Arutunian Ethan B Notifications using enhanced map-based imagery
US20060200311A1 (en) * 2005-03-03 2006-09-07 Arutunian Ethan B Enhanced imagery, such as for lead generation for service providers who provide services associated with real estate
US20060200383A1 (en) * 2005-03-03 2006-09-07 Arutunian Ethan B Enhanced maps, such as for lead generation
US7908162B2 (en) * 2005-10-11 2011-03-15 International Business Machines Corporation Method of delegating activity in service oriented architectures using continuations
US8463765B2 (en) 2011-04-29 2013-06-11 Zachary C. LESAVICH Method and system for creating vertical search engines with cloud computing networks

Family Cites Families (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5426421A (en) * 1986-04-21 1995-06-20 Gray; William F. Method of automatically managing a network or remote function-excecuting apparatus from a programable network control center
US5793966A (en) * 1995-12-01 1998-08-11 Vermeer Technologies, Inc. Computer system and computer-implemented process for creation and maintenance of online services
US5710918A (en) * 1995-06-07 1998-01-20 International Business Machines Corporation Method for distributed task fulfillment of web browser requests
US5774670A (en) * 1995-10-06 1998-06-30 Netscape Communications Corporation Persistent client state in a hypertext transfer protocol based client-server system
US5737533A (en) * 1995-10-26 1998-04-07 Wegener Internet Projects Bv System for generating a virtual reality scene in response to a database search
US5761673A (en) * 1996-01-31 1998-06-02 Oracle Corporation Method and apparatus for generating dynamic web pages by invoking a predefined procedural package stored in a database
US5734831A (en) * 1996-04-26 1998-03-31 Sun Microsystems, Inc. System for configuring and remotely administering a unix computer over a network
US5828840A (en) * 1996-08-06 1998-10-27 Verifone, Inc. Server for starting client application on client if client is network terminal and initiating client application on server if client is non network terminal

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
No relevant documents disclosed *

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN100361082C (en) * 2005-08-26 2008-01-09 北京中星微电子有限公司 Method for calling function containing pointer parameter between different operation platforms

Also Published As

Publication number Publication date
US6205469B1 (en) 2001-03-20
AU7496798A (en) 1998-12-30

Similar Documents

Publication Publication Date Title
US6205469B1 (en) Method for client-server communications through a minimal interface
KR100266937B1 (en) Web browser method and system for display and management of server latency
US6343302B1 (en) Remote web site authoring system and method
US6934697B1 (en) Creating customized internet access client user interface
JP3924102B2 (en) Method for customizing file and information processing system
JP5030354B2 (en) Method and system for distributing objects over a network
KR100288490B1 (en) Preserving state in stateless network protocols
US8527504B1 (en) Data network content filtering using categorized filtering parameters
US5867706A (en) Method of load balancing across the processors of a server
US6108673A (en) System for creating a form from a template that includes replication block
US6151622A (en) Method and system for portably enabling view synchronization over the world-wide web using frame hierarchies
KR100310760B1 (en) Method and system for the international support of internet web pages
US7406659B2 (en) Smart links
US6067579A (en) Method for reducing message translation and traffic through intermediate applications and systems in an internet application
JP3995968B2 (en) Method and web browser for selectively manipulating objects with a web browser
US6314448B1 (en) Method and system for inter-applet communication in a computer network
US6038596A (en) Method and system in a network for decreasing performance degradation triggered by multiple user redundant input events
US20020065910A1 (en) Method, system, and program for providing access time information when displaying network addresses
CN101106578B (en) A method and system for changing interface subject
EP0918424A2 (en) Automatic association of predefined user data with query entry fields
EP1406183A2 (en) Method and system for refreshing browser pages
US20030119386A1 (en) Method and system for installing server-specific plug-ins
JP2000517083A (en) Easy access to the World Wide Web
JP2004334866A (en) Conversion of web site summary through tag rib
US20010047397A1 (en) Method and system for using pervasive device to access webpages

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AU CA JP

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH CY DE DK ES FI FR GB GR IE IT LU MC NL PT SE

121 Ep: the epo has been informed by wipo that ep was designated in this application
NENP Non-entry into the national phase

Ref country code: CA

122 Ep: pct application non-entry in european phase
NENP Non-entry into the national phase

Ref country code: JP

Ref document number: 1999500748

Format of ref document f/p: F