WO2001022248A1 - A system and method for using cookies in java - Google Patents

A system and method for using cookies in java Download PDF

Info

Publication number
WO2001022248A1
WO2001022248A1 PCT/US2000/013783 US0013783W WO0122248A1 WO 2001022248 A1 WO2001022248 A1 WO 2001022248A1 US 0013783 W US0013783 W US 0013783W WO 0122248 A1 WO0122248 A1 WO 0122248A1
Authority
WO
WIPO (PCT)
Prior art keywords
applet
server
client
java
cookies
Prior art date
Application number
PCT/US2000/013783
Other languages
French (fr)
Inventor
Carl Ludewig
Rhys Ryan
Original Assignee
Audiobase, 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 Audiobase, Inc. filed Critical Audiobase, Inc.
Priority to AU51451/00A priority Critical patent/AU5145100A/en
Publication of WO2001022248A1 publication Critical patent/WO2001022248A1/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/44Arrangements for executing specific programs
    • G06F9/445Program loading or initiating

Definitions

  • This invention relates generally to the field of Java programming. More particularly, the invention relates to an improved system and method for storing client-side data in Java.
  • Java is an object-oriented programming language which has attracted considerable amount in recent years.
  • One key feature of Java is that it can be used to create computer programs which are platform-independent. That is, the same Java object code may be used on numerous different operating systems including Windows 95, Unix, Solaris, and Macintosh. This interoperability makes Java an ideal choice for programming Internet applications.
  • bytecode a compact, architecture-neutral object code
  • Bytecodes are executed by a runtime interpreter residing on the client computer. This runtime interpreter is commonly referred to as a Java "virtual machine.”
  • the Java virtual machine reads each bytecode and interprets the program instructions which comprise that bytecode so that the instructions may be executed by the native client microprocessor.
  • Virtual machines are included in commonly available Internet browser applications such as Netscape NavigatorTM or Microsoft Internet Explorer. TM
  • Java was derived from the popular C++ programming language and, as such, retained many significant features of that language.
  • Java like C++, is object-oriented. Accordingly, Java programs are developed around "classes" and "objects.” These two terms are not interchangeable but they are directly related to one another.
  • a class can be thought of as a template or blueprint from which an object is made. When an object is created from a class, new object is called a new "instance" of that class. The object will initially have all of the same characteristics of the class from which it was derived. These characteristics are defined by the data within the object and the functions and procedures - i.e., the methods - associated with the object.
  • “Applets” are compact Java programs comprised of one or more bytecodes.
  • HTML Hypertext Markup Language
  • the Web World Wide Web
  • applets may be interactive, receiving user input, executing calculations based on it and presenting continually changing content.
  • applets are ideal for generating rich media content such as audio and/or video banners.
  • One limitation on applets, however, is that (for security reasons) they are only capable of communicating with a single Web server.
  • Cookies are a useful tool for maintaining state information on the Internet, particularly with respect to the Web. Because the Hyper Text Transport Protocol (“HTTP”) - the protocol used for communicating over the Web - is a "stateless” (i.e., non-persistent) protocol, Web servers are generally incapable of differentiating between Web site visits by clients.
  • HTTP Hyper Text Transport Protocol
  • Web site owners may need their Web servers to save session information relating to Web site visits by clients.
  • e-commerce Web sites may need to assign client customers transaction IDs and passwords to help associate HTTP transactions with a single client customer.
  • Such sites require some mechanism for determining when, and for how long, clients are "logged on.”
  • Web sites advertisers may need to track the areas on a particular Web site most frequently visited by client customers to (for example) help build demographic databases and/or to personalize sites with dynamic content.
  • Cookies were developed to address these problems.
  • a cookie is simply a small amount of data that a Web server saves and can later retrieve from a client system. Cookies are typically utilized by server-side code such as Common Gateway Interface (“CGI”) programs. They are managed on the client side by Web browsers (referred to generally as "HTTP User Agents").
  • CGI Common Gateway Interface
  • Cookies are transmitted via two HTTP headers: Cookie and Set-Cookie.
  • a server Before transmitting a cookie to a client, a server typically asks the client if it is accepting cookies. If so, then the server sends the cookie data via the Set-Cookie header. Included in the header is a description of the range of Universal Resource Locators ("URLs") for which that cookie is valid. If the user subsequently revisits the Web server or any URL within the specified range, the client's browser returns the required state data via the Cookie header.
  • URLs Universal Resource Locators
  • cookies have been widely implemented for Web pages, they have not been used to store state information associated with Java applets. Due to the widespread use of applets embedded in HTML documents on the Internet, and due to the fact that these applets and frequently uploaded to the client by a server other than the server on which the HTML document resides, a system for using cookies with Java applets would be beneficial to the applet provider for at least the reasons stated above. For example, such a system would allow a Web server providing advertising applets to keep track of the different applets (e.g., multimedia ads, sound- bytes . . . etc) downloaded by a particular client.
  • the different applets e.g., multimedia ads, sound- bytes . . . etc
  • an applet e.g., downloaded from a first Web server
  • cookie data generated by a other applets (e.g., downloaded from other Web servers).
  • the first Web server could then learn more about the particular client and could narrowly tailor applet data for the client (e.g., sound or video clips) which accurately matches the client's preferences.
  • a system for using cookies in Java comprising a first server which: transmits an applet to a client, the applet including content of a particular type and/or subject matter and configured to store cookie data relating to the client; and subsequently interprets the cookie data to select the type and/or subject matter of applet content to transmit to the client the next time the first server transmits applet content to the client.
  • FIG. 1 illustrates an exemplary network architecture used to implement elements of the invention.
  • FIG. 2 illustrates an exemplary computer architecture used to implement elements of the invention.
  • FIG. 3 illustrates one embodiment of a system for using cookies in Java.
  • FIG. 4 illustrates another embodiment of a system for using cookies in Java.
  • FIG. 5 illustrates another embodiment of a system for using cookies in Java.
  • FIG. 6 illustrates an embodiment in which two applets exchange information directly.
  • FIG. 7 illustrates an embodiment in which an applet causes cookie data to be stored indirectly.
  • Embodiments of the invention include various steps, which will be described below.
  • the steps may be embodied in machine-executable instructions.
  • the instructions can be used to cause a general-purpose or special-purpose processor which is programmed with the instructions to perform certain steps.
  • these steps may be performed by specific hardware components that contain hardwired logic for performing the steps, or by any combination of programmed computer components and custom hardware components.
  • Elements of the present invention may be provided as a computer program product which may include a machine-readable medium having stored thereon instructions which may be used to program a computer (or other electronic device) to perform a process.
  • the machine-readable medium may include, but is not limited to, floppy diskettes, optical disks, CD-ROMs, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, magnet or optical cards, propagation media or other type of media/machine-readable medium suitable for storing electronic instructions.
  • the present invention may be downloaded as a computer program product, wherein the program may be transferred from a remote computer (e.g., a server) to a requesting computer (e.g., a client) by way of data signals embodied in a carrier wave or other propagation medium via a communication link (e.g., a modem or network connection).
  • a remote computer e.g., a server
  • a requesting computer e.g., a client
  • a communication link e.g., a modem or network connection
  • Elements of the present invention may be included within a client-server based system 200 such as that illustrated in Figure 1.
  • one or more servers 110, 150, and 151 communicate to one or more clients 130-135.
  • the clients 130-135 may transmit and receive data from the servers 110, 150, and 151 over a variety of communication media including (but not limited to) a local area network 140 and/or a larger network 125 (e.g., the Internet).
  • Alternative communication channels such as wireless communication via satellite broadcast (not shown) are also contemplated within the scope of the present invention.
  • the servers 110, 150, and 151 may include one or more databases for storing Java code and/or digital audio and/or video data.
  • the databases may also store specific client data (e.g., information on how frequently a particular client logs in to server 110 and that client's preferences) and/or more general data.
  • the database in one embodiment runs an instance of a Relational Database Management System (RDBMS), such as MicrosoftTM SQL-Server, OracleTM or the like.
  • RDBMS Relational Database Management System
  • a client may interact with and receive feedback from servers 110, 150, and 151 using various different communication devices and/or protocols.
  • the client logs in to servers 110, 150, and 151 via client software.
  • the client software may include a browser application which supports Java such as Netscape NavigatorTM or Microsoft Internet ExplorerTM on the client's personal computer and may communicate to servers 110, 150, 151 via the
  • HTTP Hypertext Transfer Protocol
  • servers 110, 150, 151 may communicate with servers 110, 150, 151 via cellular phones and pagers (e.g., in which the necessary software is embedded in a microchip), handheld computing devices, and/or touch-tone telephones.
  • a computer system 200 representing exemplary clients 130-135 and/or servers 110, 150, and 151 in which elements of the system and method may be implemented will now be described with reference to Figure 2.
  • a computer system 200 comprises a system bus 220 for communicating information, and a processor 210 coupled to bus 220 for processing information.
  • Computer system 200 further comprises a random access memory (RAM) or other dynamic storage device 225 (referred to herein as main memory), coupled to bus 220 for storing information and instructions to be executed by processor 210.
  • Main memory 225 also may be used for storing temporary variables or other intermediate information during execution of instructions by processor 210.
  • Computer system 200 also may include a read only memory (ROM) and/or other static storage device 226 coupled to bus 220 for storing static information and instructions used by processor 210.
  • ROM read only memory
  • a data storage device 227 such as a magnetic disk or optical disc and its corresponding drive may also be coupled to computer system 200 for storing information and instructions.
  • Computer system 200 can also be coupled to a second I/O bus 250 via and I/O interface 230.
  • a plurality of I/O devices may be coupled to I/O bus 250, including a display device 243, an input device (e.g., an alphanumeric input device 242 and or a cursor control device 241).
  • the communication device 240 may comprise a modem, a network interface card, or other well known interface device, such as those used for coupling to Ethernet, token ring, or other types of networks.
  • the computer system 200 may be coupled to a number of servers via a conventional network infrastructure, such as a company's local area network 140 and/or a larger network 125, for example.
  • Figure 3 illustrates client 135 communicating over a network 125 to servers 150 and 110.
  • client 135 initially makes a Web page request 310 from server 110 and, in response, server 110 transmits the requested Web page 320 to client 135.
  • the Web page request 310 may contain more information than a simple Web page address.
  • server 110 is a search engine (e.g., such as ExciteTM or YahooTM)
  • Web page request 310 may contain a query for specific information (e.g., "mountain bikes," “airline tickets” . . . etc).
  • server 110 sends a Web page 320 to client 135 which contains links to Web sites that contain information related to the query (e.g., "www.trekbikes.com,” “www.continental.com”. . . etc).
  • Web page 320 may also include embedded Web objects such as audio or video applets which are automatically transmitted to the client 135 when the Web page is downloaded. This is illustrated in Figure 3 as applet request 340 from client 135 to server 150, and subsequent Java applet 330 download.
  • server 150 is an advertisement server (i.e., a server which provides embedded Web page advertisements) and the particular Java applet transmitted to client 135 is selected based on the type of Web page 320 transmitted to client 135 from server 110. For example, if client 135 downloaded a Web page 320 with links relating to mountain biking (e.g., in response to a query for "mountain biking"), the Java applet 330 may include sound and/or video content for a particular brand of mountain bike. It should be noted, however, that the specific configuration illustrated in Figure 3 is for the purpose of example only. Such as configuration (i.e., an applet embedded in a Web page) is not necessary to comply with the underlying principles of the invention.
  • Java applet 330 stores cookie data 350 relating to the preferences of client 135. For example, when client 135 downloads a Java applet stored on server 150, the applet cookie 350 on client 135 is updated to include data identifying the subject- matter of the applet (or, e.g., the Web page in which the applet is embedded). The next time client 135 requests an applet from server 150, the request will include the stored cookie data 350.
  • server 150 will transmit an applet including subject-specific audio and/or video content based on client 135's stored preferences.
  • Cookie data resulting from numerous similar applet downloads may be analyzed on server 150 (e.g., based on compiled marketing research) so that future applet transmissions to client 135 are uniquely tailored to client 135's interests. For example, if a significant percentage of previous applet downloads included subject matter on outdoor activities (e.g., mountain biking, camping, hiking . . . etc) then the next time client 135 transmits a request 340 for an embedded audio and or video applet, server 150 may transmit an audio applet for Jeep WranglerTM (or, alternatively, for a Jeep Grand CherokeeTM if the market-based cookie analysis on server 150 indicates that client 135 is in a higher income bracket).
  • server 150 may transmit an audio applet for Jeep WranglerTM (or, alternatively, for a Jeep Grand CherokeeTM if the market-based cookie analysis on server 150 indicates that client 135 is in a higher income bracket).
  • FIG. 4 Another embodiment of a system for using cookies in Java is illustrated in Figure 4.
  • two separate applets 410 and 411 store cookie data 420 and 421, respectively.
  • the individual cookie data 420 and 421 stored for each applet 410, 411 may be used by servers 150 and 151, respectively, in the same manner described above (e.g., to determine the subject- matter for applet content).
  • cookie data 420, 421 may be exchanged between the applets 410, 411.
  • applet 410 may read cookie data from applet 41 l's cookie file 421 (as well as it's own cookie file 420).
  • server 150 is provided with supplemental information about client 135's preferences, and can therefore transmit applet content which is more narrowly tailored to client 135's taste. It should also be noted that this embodiment effectively circumvents the limitation that one applet may only communicate to one Web server.
  • both server 150 and server 151 are advertisement servers that provide audio and/or video content to Web pages.
  • each of the cookie files 420, 421 may contain different types of marketing data about client 135.
  • cookie 420 may contain data indicating that client 135 prefers outdoor activities.
  • cookie 421 may contain information on the airline that client 421 prefers to use when traveling.
  • server 510 may provide an audio and/or video advertisement of reduced fares to wilderness destinations on client 42 l's favorite airline.
  • applet 410 communicates directly with applet 411 to retrieve cookie data. Regardless of which embodiment of the system is implemented, however, the underlying principles remain the same.
  • the two applets 410, 411 exchange non- cookie data.
  • this embodiment will still allow server 150 to obtain information about client 135 collected by applet 411. This may be any of the types of information discussed above except in a non-cookie format.
  • the applet does not store or manipulate cookies directly. Rather, it makes a request back to the server and the server sets a cookie in the browser.
  • the applet 410 may request that a cookie be sent from a common gateway interface ("CGI") program 710, which sets a cookie 420 in the browser (not shown). Subsequent requests from the browser or applet 410 will then return the cookie 420 to the server.
  • CGI common gateway interface
  • the applet 410 never directly manipulates the cookie 420, but by making the appropriate requests to the server 150, the applet 410 can cause the underlying browser to set/get the cookie 420.
  • This embodiment is particularly useful for system where applets are not permitted (e.g., for security reasons) to read or write to the file system of the client 135. If the applet 410 needed the exact value of cookie 420, it might be sent to the applet 410 by the server 150 as text data.
  • Figure 3 illustrates two servers and a single client for implementing specific aspects of the invention.
  • any number of servers i.e., one or more
  • clients may implement aspects of the invention.
  • the systems illustrated in Figures 3 through 5 are merely a few exemplary embodiments.
  • the foregoing description focused on the Java programming language, other platform-independent programming languages may be used without departing from the underlying principles of the invention. Accordingly, the scope and spirit of the invention should be judged in terms of the claims which follow.

Abstract

A system for using cookies in Java is disclosed comprising a first server (150) which: transmits an applet (330) to a client (135), the applet including content of a particular type and/or subject matter and configured to store cookie data (300) relating to the client; and subsequently interprets the cookie data to select the type and/or subject matter of applet content to transmit to the client the next time the server transmits applet content to the client.

Description

A SYSTEM AND METHOD FOR USING COOKIES IN JAVA
BACKGROUND OF THE INVENTION Field of the Invention
This invention relates generally to the field of Java programming. More particularly, the invention relates to an improved system and method for storing client-side data in Java.
Description of the Related Art
Java
Java is an object-oriented programming language which has attracted considerable amount in recent years. One key feature of Java is that it can be used to create computer programs which are platform-independent. That is, the same Java object code may be used on numerous different operating systems including Windows 95, Unix, Solaris, and Macintosh. This interoperability makes Java an ideal choice for programming Internet applications.
Once a program is written in Java source code, the Java compiler generates a compact, architecture-neutral object code known as a "bytecode." Bytecodes are executed by a runtime interpreter residing on the client computer. This runtime interpreter is commonly referred to as a Java "virtual machine." The Java virtual machine reads each bytecode and interprets the program instructions which comprise that bytecode so that the instructions may be executed by the native client microprocessor. Virtual machines are included in commonly available Internet browser applications such as Netscape Navigator™ or Microsoft Internet Explorer. ™
Java was derived from the popular C++ programming language and, as such, retained many significant features of that language. For example, Java, like C++, is object-oriented. Accordingly, Java programs are developed around "classes" and "objects." These two terms are not interchangeable but they are directly related to one another. A class can be thought of as a template or blueprint from which an object is made. When an object is created from a class, new object is called a new "instance" of that class. The object will initially have all of the same characteristics of the class from which it was derived. These characteristics are defined by the data within the object and the functions and procedures - i.e., the methods - associated with the object. "Applets" are compact Java programs comprised of one or more bytecodes. They are typically embedded in-line as objects within Hypertext Markup Language (hereinafter "HTML") documents on the World Wide Web (hereinafter "the Web") in a similar fashion to HTML- embedded images. Unlike images, however, applets may be interactive, receiving user input, executing calculations based on it and presenting continually changing content. For example, applets are ideal for generating rich media content such as audio and/or video banners. One limitation on applets, however, is that (for security reasons) they are only capable of communicating with a single Web server.
Cookies
Cookies are a useful tool for maintaining state information on the Internet, particularly with respect to the Web. Because the Hyper Text Transport Protocol ("HTTP") - the protocol used for communicating over the Web - is a "stateless" (i.e., non-persistent) protocol, Web servers are generally incapable of differentiating between Web site visits by clients.
This represents a significant limitation to client/server transactions on the Internet. In various situations, Web site owners may need their Web servers to save session information relating to Web site visits by clients. For example, e-commerce Web sites may need to assign client customers transaction IDs and passwords to help associate HTTP transactions with a single client customer. Such sites require some mechanism for determining when, and for how long, clients are "logged on." Similarly, Web sites advertisers may need to track the areas on a particular Web site most frequently visited by client customers to (for example) help build demographic databases and/or to personalize sites with dynamic content.
The "cookie" was developed to address these problems. A cookie is simply a small amount of data that a Web server saves and can later retrieve from a client system. Cookies are typically utilized by server-side code such as Common Gateway Interface ("CGI") programs. They are managed on the client side by Web browsers (referred to generally as "HTTP User Agents").
Cookies are transmitted via two HTTP headers: Cookie and Set-Cookie. Before transmitting a cookie to a client, a server typically asks the client if it is accepting cookies. If so, then the server sends the cookie data via the Set-Cookie header. Included in the header is a description of the range of Universal Resource Locators ("URLs") for which that cookie is valid. If the user subsequently revisits the Web server or any URL within the specified range, the client's browser returns the required state data via the Cookie header.
Although cookies have been widely implemented for Web pages, they have not been used to store state information associated with Java applets. Due to the widespread use of applets embedded in HTML documents on the Internet, and due to the fact that these applets and frequently uploaded to the client by a server other than the server on which the HTML document resides, a system for using cookies with Java applets would be beneficial to the applet provider for at least the reasons stated above. For example, such a system would allow a Web server providing advertising applets to keep track of the different applets (e.g., multimedia ads, sound- bytes . . . etc) downloaded by a particular client.
In addition, it would be useful in some circumstances to configure an applet (e.g., downloaded from a first Web server) to read cookie data generated by a other applets (e.g., downloaded from other Web servers). The first Web server could then learn more about the particular client and could narrowly tailor applet data for the client (e.g., sound or video clips) which accurately matches the client's preferences.
Accordingly, what is needed is a system and method for using cookies in Java. What is also needed is a system and method for using cookies in Java wherein two applets generated by different Web server can exchange cookie data. What is also needed is a system and method for using cookies in Java which can be implemented on currently existing Java platforms.
SUMMARY OF THE INVENTION
A system for using cookies in Java is disclosed comprising a first server which: transmits an applet to a client, the applet including content of a particular type and/or subject matter and configured to store cookie data relating to the client; and subsequently interprets the cookie data to select the type and/or subject matter of applet content to transmit to the client the next time the first server transmits applet content to the client. BRIEF DESCRIPTION OF THE DRAWINGS
A better understanding of the present invention can be obtained from the following detailed description in conjunction with the following drawings, in which:
FIG. 1 illustrates an exemplary network architecture used to implement elements of the invention.
FIG. 2 illustrates an exemplary computer architecture used to implement elements of the invention.
FIG. 3 illustrates one embodiment of a system for using cookies in Java.
FIG. 4 illustrates another embodiment of a system for using cookies in Java.
FIG. 5 illustrates another embodiment of a system for using cookies in Java.
FIG. 6 illustrates an embodiment in which two applets exchange information directly.
FIG. 7 illustrates an embodiment in which an applet causes cookie data to be stored indirectly.
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS A SYSTEM AND METHOD FOR USING COOKIES IN JAVA
An improved system and method is described for streaming Java. In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the invention. It will be apparent, however, to one skilled in the art that the invention may be practiced without some of these specific details. In other instances, well-known structures and devices are shown in block diagram form to avoid obscuring the underlying principles of the invention.
Embodiments of the invention include various steps, which will be described below. The steps may be embodied in machine-executable instructions. The instructions can be used to cause a general-purpose or special-purpose processor which is programmed with the instructions to perform certain steps. Alternatively, these steps may be performed by specific hardware components that contain hardwired logic for performing the steps, or by any combination of programmed computer components and custom hardware components.
Elements of the present invention may be provided as a computer program product which may include a machine-readable medium having stored thereon instructions which may be used to program a computer (or other electronic device) to perform a process. The machine-readable medium may include, but is not limited to, floppy diskettes, optical disks, CD-ROMs, and magneto-optical disks, ROMs, RAMs, EPROMs, EEPROMs, magnet or optical cards, propagation media or other type of media/machine-readable medium suitable for storing electronic instructions. For example, the present invention may be downloaded as a computer program product, wherein the program may be transferred from a remote computer (e.g., a server) to a requesting computer (e.g., a client) by way of data signals embodied in a carrier wave or other propagation medium via a communication link (e.g., a modem or network connection).
AN EXEMPLARY NETWORK ARCHITECTURE
Elements of the present invention may be included within a client-server based system 200 such as that illustrated in Figure 1. According to the embodiment depicted in Figure 1, one or more servers 110, 150, and 151 communicate to one or more clients 130-135. The clients 130-135 may transmit and receive data from the servers 110, 150, and 151 over a variety of communication media including (but not limited to) a local area network 140 and/or a larger network 125 (e.g., the Internet). Alternative communication channels such as wireless communication via satellite broadcast (not shown) are also contemplated within the scope of the present invention.
The servers 110, 150, and 151 may include one or more databases for storing Java code and/or digital audio and/or video data. The databases may also store specific client data (e.g., information on how frequently a particular client logs in to server 110 and that client's preferences) and/or more general data. The database in one embodiment runs an instance of a Relational Database Management System (RDBMS), such as Microsoft™ SQL-Server, Oracle™ or the like. A client may interact with and receive feedback from servers 110, 150, and 151 using various different communication devices and/or protocols. In one embodiment, the client logs in to servers 110, 150, and 151 via client software. The client software may include a browser application which supports Java such as Netscape Navigator™ or Microsoft Internet Explorer™ on the client's personal computer and may communicate to servers 110, 150, 151 via the
Hypertext Transfer Protocol (hereinafter "HTTP"). In other embodiments included within the scope of the invention, clients may communicate with servers 110, 150, 151 via cellular phones and pagers (e.g., in which the necessary software is embedded in a microchip), handheld computing devices, and/or touch-tone telephones.
AN EXEMPLARY COMPUTER ARCHITECTURE
Having briefly described an exemplary network architecture which employs various elements of the present system and method, a computer system 200 representing exemplary clients 130-135 and/or servers 110, 150, and 151 in which elements of the system and method may be implemented will now be described with reference to Figure 2.
One embodiment of a computer system 200 comprises a system bus 220 for communicating information, and a processor 210 coupled to bus 220 for processing information. Computer system 200 further comprises a random access memory (RAM) or other dynamic storage device 225 (referred to herein as main memory), coupled to bus 220 for storing information and instructions to be executed by processor 210. Main memory 225 also may be used for storing temporary variables or other intermediate information during execution of instructions by processor 210. Computer system 200 also may include a read only memory (ROM) and/or other static storage device 226 coupled to bus 220 for storing static information and instructions used by processor 210.
A data storage device 227 such as a magnetic disk or optical disc and its corresponding drive may also be coupled to computer system 200 for storing information and instructions. Computer system 200 can also be coupled to a second I/O bus 250 via and I/O interface 230. A plurality of I/O devices may be coupled to I/O bus 250, including a display device 243, an input device (e.g., an alphanumeric input device 242 and or a cursor control device 241).
The communication device 240 may comprise a modem, a network interface card, or other well known interface device, such as those used for coupling to Ethernet, token ring, or other types of networks. In any event, in this manner, the computer system 200 may be coupled to a number of servers via a conventional network infrastructure, such as a company's local area network 140 and/or a larger network 125, for example.
ONE EMBODIMENT OF THE SYSTEM AND METHOD FOR USING COOKIES IN JAVA
Figure 3 illustrates client 135 communicating over a network 125 to servers 150 and 110. In one embodiment of the system, client 135 initially makes a Web page request 310 from server 110 and, in response, server 110 transmits the requested Web page 320 to client 135. The Web page request 310 may contain more information than a simple Web page address. For example, if server 110 is a search engine (e.g., such as Excite™ or Yahoo™), then Web page request 310 may contain a query for specific information (e.g., "mountain bikes," "airline tickets" . . . etc). In response, server 110 sends a Web page 320 to client 135 which contains links to Web sites that contain information related to the query (e.g., "www.trekbikes.com," "www.continental.com". . . etc).
Web page 320 may also include embedded Web objects such as audio or video applets which are automatically transmitted to the client 135 when the Web page is downloaded. This is illustrated in Figure 3 as applet request 340 from client 135 to server 150, and subsequent Java applet 330 download. In one embodiment of the system, server 150 is an advertisement server (i.e., a server which provides embedded Web page advertisements) and the particular Java applet transmitted to client 135 is selected based on the type of Web page 320 transmitted to client 135 from server 110. For example, if client 135 downloaded a Web page 320 with links relating to mountain biking (e.g., in response to a query for "mountain biking"), the Java applet 330 may include sound and/or video content for a particular brand of mountain bike. It should be noted, however, that the specific configuration illustrated in Figure 3 is for the purpose of example only. Such as configuration (i.e., an applet embedded in a Web page) is not necessary to comply with the underlying principles of the invention.
In one embodiment of the system, Java applet 330 stores cookie data 350 relating to the preferences of client 135. For example, when client 135 downloads a Java applet stored on server 150, the applet cookie 350 on client 135 is updated to include data identifying the subject- matter of the applet (or, e.g., the Web page in which the applet is embedded). The next time client 135 requests an applet from server 150, the request will include the stored cookie data 350.
As a result, server 150 will transmit an applet including subject-specific audio and/or video content based on client 135's stored preferences.
Cookie data resulting from numerous similar applet downloads may be analyzed on server 150 (e.g., based on compiled marketing research) so that future applet transmissions to client 135 are uniquely tailored to client 135's interests. For example, if a significant percentage of previous applet downloads included subject matter on outdoor activities (e.g., mountain biking, camping, hiking . . . etc) then the next time client 135 transmits a request 340 for an embedded audio and or video applet, server 150 may transmit an audio applet for Jeep Wrangler™ (or, alternatively, for a Jeep Grand Cherokee™ if the market-based cookie analysis on server 150 indicates that client 135 is in a higher income bracket).
Another embodiment of a system for using cookies in Java is illustrated in Figure 4. In this embodiment, two separate applets 410 and 411 store cookie data 420 and 421, respectively. The individual cookie data 420 and 421 stored for each applet 410, 411 may be used by servers 150 and 151, respectively, in the same manner described above (e.g., to determine the subject- matter for applet content).
In addition, in this embodiment individual cookie data 420, 421 may be exchanged between the applets 410, 411. For example, as illustrated in Figure 4, applet 410 may read cookie data from applet 41 l's cookie file 421 (as well as it's own cookie file 420). One benefit achieved through this embodiment is that server 150 is provided with supplemental information about client 135's preferences, and can therefore transmit applet content which is more narrowly tailored to client 135's taste. It should also be noted that this embodiment effectively circumvents the limitation that one applet may only communicate to one Web server.
In one embodiment of the system, both server 150 and server 151 are advertisement servers that provide audio and/or video content to Web pages. In this embodiment, each of the cookie files 420, 421 may contain different types of marketing data about client 135. For example (returning to the previous example) cookie 420 may contain data indicating that client 135 prefers outdoor activities. By contrast, cookie 421 may contain information on the airline that client 421 prefers to use when traveling. Accordingly, in response to the combined data, server 510 may provide an audio and/or video advertisement of reduced fares to wilderness destinations on client 42 l's favorite airline. Rather than reading the cookie data 421 of applet 411 directly, in the embodiment of the system illustrated in Figure 5, applet 410 communicates directly with applet 411 to retrieve cookie data. Regardless of which embodiment of the system is implemented, however, the underlying principles remain the same.
In another embodiment, illustrated in Figure 6, the two applets 410, 411 exchange non- cookie data. Thus, if client 135 has cookies disabled on his computer, this embodiment will still allow server 150 to obtain information about client 135 collected by applet 411. This may be any of the types of information discussed above except in a non-cookie format.
In one embodiment of the system and method, the applet does not store or manipulate cookies directly. Rather, it makes a request back to the server and the server sets a cookie in the browser. For example, as illustrated in Figure 7, the applet 410 may request that a cookie be sent from a common gateway interface ("CGI") program 710, which sets a cookie 420 in the browser (not shown). Subsequent requests from the browser or applet 410 will then return the cookie 420 to the server. Thus, in this embodiment, the applet 410 never directly manipulates the cookie 420, but by making the appropriate requests to the server 150, the applet 410 can cause the underlying browser to set/get the cookie 420. This embodiment is particularly useful for system where applets are not permitted (e.g., for security reasons) to read or write to the file system of the client 135. If the applet 410 needed the exact value of cookie 420, it might be sent to the applet 410 by the server 150 as text data.
Throughout the foregoing description, for the purposes of explanation, numerous specific details were set forth in order to provide a thorough understanding of the invention. It will be apparent, however, to one skilled in the art that the invention may be practiced without some of these specific details. For example, Figure 3 illustrates two servers and a single client for implementing specific aspects of the invention. However, one of ordinary skill in the art will recognize that any number of servers (i.e., one or more) and/or clients may implement aspects of the invention. The systems illustrated in Figures 3 through 5 are merely a few exemplary embodiments. In addition, while the foregoing description focused on the Java programming language, other platform-independent programming languages may be used without departing from the underlying principles of the invention. Accordingly, the scope and spirit of the invention should be judged in terms of the claims which follow.

Claims

CLAIMSWhat is claimed is:
1. A system for using cookies in Java comprising a first server which: transmits an applet to a client, said applet including content of a particular type and/or subject matter and configured to store cookie data relating to said client; and subsequently interprets said cookie data to select the type and/or subject matter of applet content to transmit to said client the next time said first server transmits applet content to said client.
2. The system as claimed in claim 1 wherein said first server interprets cookie data stored by a second applet to select the type of applet content to transmit to said client, said second applet being transmitted to said client by a second server.
3. The system as claimed in claim 1 wherein said applet content type is digital audio content.
4. The system as claimed in claim 1 wherein said applet content type is digital video content.
5. The system as claimed in claim 1 wherein said first server is an advertisement server.
6. The system as claimed in claim 2 wherein said second server is an advertisement server.
7. The system as claimed in claim 1 wherein said applet is embedded in an HTML document.
8. A method for using cookies in Java comprising the steps of: transmitting a first applet from a first server to a client, said first applet adapted to provide digital audio/video content to said client and to store cookie data relating to said client; updating said cookie data based on said client's preferences; and selecting additional audio/video content to transmit to said client based on said updated cookie data.
9. The method for using cookies in Java as claimed in claim 8 wherein said client's preferences are determined based on said updated cookie data as well as cookie data stored by a second applet.
10. The method for using cookies in Java as claimed in claim 9 wherein said second applet is transmitted to said client from a second server.
11. The method for using cookies in Java as claimed in claim 9 wherein said first applet communicates directly with said second applet to retrieve cookie data stored by said second applet.
12. The method for using cookies in Java as claimed in claim 9 wherein said first applet exchanges non-cookie data with said second applet, said non-cookie relating to said client's preferences.
13. The method for using cookies in Java as claimed in claim 8 wherein said first server is an advertisement server.
14. The method for using cookies in Java as claimed in claim 10 wherein said second server is an advertisement server.
15. The system as claimed in claim 8 wherein said first applet is embedded in an HTML document.
16. A computer data signal embodied in a carrier wave comprising: a first source code segment for retrieving a first Java applet from a first server, said first Java applet configured to store cookie data relating to a first client; and a second source code segment for retrieving a second Java applet from a second server, said second Java applet configured to read said cookie data stored by said first Java applet.
17. The computer data signal embodied in a carrier wave as claimed in claim 16 further comprising: a third source code segment for providing direct communication of cookie data from said first Java applet to said second Java applet.
18. The computer data signal embodied in a carrier wave as claimed in claim 16 further comprising: a third source code segment for providing direct communication of non-cookie data from said first Java applet to said second Java applet.
19. The computer data signal embodied in a carrier wave as claimed in claim 16 wherein said first server is an advertisement server.
20. The computer data signal embodied in a carrier wave as claimed in claim 16 wherein said second server is an advertisement server.
21. The computer data signal embodied in a carrier wave as claimed in claim 16 wherein said first applet is embedded in an HTML document.
22. A method for manipulating cookies with a Java applet in which: a server transmits a Java applet to a client; said Java applet requests that said server transmit cookie data to said client; and responsive to said request, said server transmits cookie data to said client.
23. The method for manipulating cookies with a Java applet as claimed in claim 22 wherein if said Java applet requests additional information from said server, said cookie data is transmitted therewith.
24. The method for manipulating cookies with a Java applet as claimed in claim 22 wherein said request for transmission of a cookie is made to a common gateway interface program running on said server.
PCT/US2000/013783 1999-09-22 2000-05-19 A system and method for using cookies in java WO2001022248A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU51451/00A AU5145100A (en) 1999-09-22 2000-05-19 A system and method for using cookies in java

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US09/405,446 US6327609B1 (en) 1999-09-22 1999-09-22 System and method for using cookies in java
US09/405,446 1999-09-22

Publications (1)

Publication Number Publication Date
WO2001022248A1 true WO2001022248A1 (en) 2001-03-29

Family

ID=23603731

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US2000/013783 WO2001022248A1 (en) 1999-09-22 2000-05-19 A system and method for using cookies in java

Country Status (3)

Country Link
US (1) US6327609B1 (en)
AU (1) AU5145100A (en)
WO (1) WO2001022248A1 (en)

Families Citing this family (33)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6970933B1 (en) 1999-07-15 2005-11-29 F5 Networks, Inc. Enabling application level persistence between a server and another resource over a network
US7346695B1 (en) 2002-10-28 2008-03-18 F5 Networks, Inc. System and method for performing application level persistence
US7287084B1 (en) 1999-07-15 2007-10-23 F5 Networks, Inc. Enabling encryption of application level persistence between a server and a client
US7000183B1 (en) * 1999-09-27 2006-02-14 John M. Crawford, Jr. Method and apparatus for viewer-specific presentation of information
US6973478B1 (en) * 1999-10-26 2005-12-06 Top Moxie, Inc. Autonomous local assistant for managing business processes
US6594691B1 (en) * 1999-10-28 2003-07-15 Surfnet Media Group, Inc. Method and system for adding function to a web page
US6778653B1 (en) * 1999-11-09 2004-08-17 Nortel Networks Limited Storing information about a telephony session
US7343293B1 (en) * 2000-04-14 2008-03-11 Sony Corporation Responding to request for data
US7039691B1 (en) * 2000-06-02 2006-05-02 Sun Microsystems, Inc. Java virtual machine configurable to perform as a web server
US20020112033A1 (en) * 2000-08-09 2002-08-15 Doemling Marcus F. Content enhancement system and method
US20030195803A1 (en) * 2000-10-25 2003-10-16 Jussi Ketonen Method and system for retrieving and analyzing data to customize the behavior of automated web agents
US20040015580A1 (en) * 2000-11-02 2004-01-22 Victor Lu System and method for generating and reporting cookie values at a client node
US7647387B2 (en) * 2000-12-01 2010-01-12 Oracle International Corporation Methods and systems for rule-based distributed and personlized content delivery
US7178161B1 (en) * 2001-01-18 2007-02-13 Tentoe Surfing, Inc. Method and apparatus for creating a connection speed detecting movie and rich media player customization on the fly
WO2002071189A2 (en) * 2001-03-05 2002-09-12 American Express Travel Related Services Company, Inc. System and method for integrating offers
US20030144907A1 (en) * 2001-03-05 2003-07-31 American Express Travel Related Services Company, Inc. System and method for administering incentive offers
JP2002360937A (en) * 2001-06-08 2002-12-17 Konami Computer Entertainment Osaka:Kk Data delivery system, data delivery server, and video game device
US7694297B2 (en) * 2001-12-28 2010-04-06 Cisco Technology, Inc. System and method for applet caching
US8156216B1 (en) 2002-01-30 2012-04-10 Adobe Systems Incorporated Distributed data collection and aggregation
US20030187976A1 (en) * 2002-04-01 2003-10-02 Decime Jerry B. Tracking users at a web server network
US20040003018A1 (en) * 2002-06-26 2004-01-01 Pentkovski Vladimir M. Method and system for efficient handlings of serial and parallel java operations
US20040098229A1 (en) * 2002-06-28 2004-05-20 Brett Error Efficient click-stream data collection
US7430755B1 (en) 2002-09-03 2008-09-30 Fs Networks, Inc. Method and system for providing persistence in a secure network access
EP1546975A2 (en) * 2002-09-10 2005-06-29 Pinpoint Selling Inc. Rich media personal selling system
US6886101B2 (en) 2002-10-30 2005-04-26 American Express Travel Related Services Company, Inc. Privacy service
US7089340B2 (en) * 2002-12-31 2006-08-08 Intel Corporation Hardware management of java threads utilizing a thread processor to manage a plurality of active threads with synchronization primitives
US20050216844A1 (en) * 2004-03-03 2005-09-29 Error Brett M Delayed transmission of website usage data
US7254542B2 (en) 2003-03-31 2007-08-07 International Business Machines Corporation Portal data passing through non-persistent browser cookies
US7673017B2 (en) 2005-09-06 2010-03-02 Interpolls Network Inc. Systems and methods for integrating XML syndication feeds into online advertisement
US8566452B1 (en) 2006-08-03 2013-10-22 F5 Networks, Inc. Intelligent HTTP based load-balancing, persistence, and application traffic management of SSL VPN tunnels
US8112550B2 (en) 2006-09-19 2012-02-07 Tacoda Llc System and method for preserving consumer choice
US9454390B2 (en) * 2008-04-04 2016-09-27 Intuit Inc. Executable code generated from common source code
US8793614B2 (en) 2008-05-23 2014-07-29 Aol Inc. History-based tracking of user preference settings

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5796952A (en) * 1997-03-21 1998-08-18 Dot Com Development, Inc. Method and apparatus for tracking client interaction with a network resource and creating client profiles and resource database

Family Cites Families (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5774670A (en) * 1995-10-06 1998-06-30 Netscape Communications Corporation Persistent client state in a hypertext transfer protocol based client-server system
US5812668A (en) * 1996-06-17 1998-09-22 Verifone, Inc. System, method and article of manufacture for verifying the operation of a remote transaction clearance system utilizing a multichannel, extensible, flexible architecture
US5948061A (en) * 1996-10-29 1999-09-07 Double Click, Inc. Method of delivery, targeting, and measuring advertising over networks
US6085224A (en) * 1997-03-11 2000-07-04 Intracept, Inc. Method and system for responding to hidden data and programs in a datastream
US6144944A (en) * 1997-04-24 2000-11-07 Imgis, Inc. Computer system for efficiently selecting and providing information
US6006260A (en) * 1997-06-03 1999-12-21 Keynote Systems, Inc. Method and apparatus for evalutating service to a user over the internet
BR9810938A (en) * 1997-06-25 2000-09-26 Inforonics Inc Device and method for identifying customers accessing network sites.
US6101534A (en) * 1997-09-03 2000-08-08 Rothschild; Leigh M. Interactive, remote, computer interface system
US6112240A (en) * 1997-09-03 2000-08-29 International Business Machines Corporation Web site client information tracker
US6012052A (en) * 1998-01-15 2000-01-04 Microsoft Corporation Methods and apparatus for building resource transition probability models for use in pre-fetching resources, editing resource link topology, building resource link topology templates, and collaborative filtering
US6182142B1 (en) * 1998-07-10 2001-01-30 Encommerce, Inc. Distributed access management of information resources
US6141010A (en) * 1998-07-17 2000-10-31 B. E. Technology, Llc Computer interface method and apparatus with targeted advertising
US6144988A (en) * 1998-07-23 2000-11-07 Experian Marketing Solutions, Inc. Computer system and method for securely formatting and mapping data for internet web sites

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5796952A (en) * 1997-03-21 1998-08-18 Dot Com Development, Inc. Method and apparatus for tracking client interaction with a network resource and creating client profiles and resource database

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
BURNS J.: "So, You Want A Cookie, Huh?", pages 6, XP002930083, Retrieved from the Internet <URL:http://htmlgoodies.earthweb.com/tutors/cookie.html> *

Also Published As

Publication number Publication date
US6327609B1 (en) 2001-12-04
AU5145100A (en) 2001-04-24

Similar Documents

Publication Publication Date Title
US6327609B1 (en) System and method for using cookies in java
US6332127B1 (en) Systems, methods and computer program products for providing time and location specific advertising via the internet
US7035828B2 (en) Method and system for modifying and transmitting data between a portable computer and a network
US6223178B1 (en) Subscription and internet advertising via searched and updated bookmark sets
US6973478B1 (en) Autonomous local assistant for managing business processes
US8266515B2 (en) Categorization of summarized information
US7711611B2 (en) Wish list
US7039699B1 (en) Tracking usage behavior in computer systems
US6085229A (en) System and method for providing client side personalization of content of web pages and the like
US6725425B1 (en) Method and apparatus for retrieving information from semi-structured, web-based data sources
US7131062B2 (en) Systems, methods and computer program products for associating dynamically generated web page content with web site visitors
US7509397B1 (en) Web portholes: using web proxies to capture and enhance display real estate
AU774177B2 (en) Information collection system and information collection method on network, each using technique of internet, and recording medium in which the information collection method is recorded
US7149754B2 (en) Method for transmitting a transferable information packet
US7562387B2 (en) Method and apparatus for selective disabling of tracking of click stream data
EP2095324A1 (en) Link retrofitting of digital media objects
JP2007507812A (en) Providing advertisements that target content to e-mails such as e-mail newsletters
US20020178213A1 (en) Remote URL munging
WO2002063414A2 (en) System and method for delivering plural advertisement information on a data network
JP2000148675A (en) Device and method for providing customized advertisement on www
EP1265170A1 (en) Method of maintaining a user profile
US20020178186A1 (en) Remote URL munging business method
JP2006113745A (en) Internet advertising system
Sah et al. Programming the Internet from the Server-Side with Tcl and Audience1.
WO2001020519A2 (en) Method and system for storing prospect lists in a computer database

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

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

AL Designated countries for regional patents

Kind code of ref document: A1

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

121 Ep: the epo has been informed by wipo that ep was designated in this application
DFPE Request for preliminary examination filed prior to expiration of 19th month from priority date (pct application filed before 20040101)
122 Ep: pct application non-entry in european phase
NENP Non-entry into the national phase

Ref country code: JP