US20050102611A1 - Process for creating dynamic web pages driven from the server side - Google Patents

Process for creating dynamic web pages driven from the server side Download PDF

Info

Publication number
US20050102611A1
US20050102611A1 US10/702,632 US70263203A US2005102611A1 US 20050102611 A1 US20050102611 A1 US 20050102611A1 US 70263203 A US70263203 A US 70263203A US 2005102611 A1 US2005102611 A1 US 2005102611A1
Authority
US
United States
Prior art keywords
browser
http
server
commands
stream
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US10/702,632
Inventor
Danny Chen
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Individual
Original Assignee
Individual
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Individual filed Critical Individual
Priority to US10/702,632 priority Critical patent/US20050102611A1/en
Publication of US20050102611A1 publication Critical patent/US20050102611A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/90Details of database functions independent of the retrieved data types
    • G06F16/95Retrieval from the web
    • G06F16/958Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking
    • G06F16/972Access to data in other repository systems, e.g. legacy data or dynamic Web page generation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/10Text processing
    • G06F40/166Editing, e.g. inserting or deleting

Definitions

  • the present invention relates to internet web pages and, more specifically, to a process for creating server-side controllable dynamic web pages in modern web browsers (HTTP clients).
  • HTTP clients modern web browsers
  • the present invention comprises a process for creating server-side controllable dynamic web content in web browsers (HTTP clients) that support a document object model and a scripting language able to access the document object model, without the use of browser add-in or plug-in programs, such as Java or ActiveX components.
  • the process comprises the use of two or more independent HTTP request streams: one for displaying a webpage and another for streaming the commands that create dynamic updates. At least a first stream loads into the HTTP client for the creation of visible content, the “display stream.” At least a second stream forms an invisible “control stream” that sends native browser scripts to effect the desired change in visible content.
  • the control stream may also establish an HTTP “heartbeat” to avoid client timeouts, per HTTP specifications, and can optionally control an inadvertent termination of the control stream.
  • FIG. 1 is a high-level flow chart of a process for creating dynamic web content according to the present invention.
  • FIG. 2 is a mid-level flowchart of the dynamic updating of a display page according to the present invention.
  • FIG. 1 a process 10 for enabling dynamic web content in a modem web browser 12 (i.e., one that supports HTML 4.0 and higher and implements standard DHTML constructs and a document object model in a global namespace) from the server 14 side.
  • Process 10 begins when browser 12 makes a standard HTTP request 16 of server 14 for a web page that server 14 will provide dynamic content.
  • server 14 make an HTML reply 18 .
  • HTML reply 18 results in browser making at least two HTTP requests 20 .
  • a standard HTML reply such as one that would otherwise trigger browser 12 to request multiple frames, DHTML, floating frames, or the creation of sub-windows, is used to trigger browser 12 to make multiple HTTP requests 20 .
  • server 16 In response to multiple HTTP requests 20 from browser 12 , server 16 provides at least one display page 22 and at least one control page 24 .
  • Display page 22 is the original web page sought by browser 12 that is enhanced according to process 10 to include dynamic content.
  • Control page 24 serves as a control HTTP stream through which commands 26 are sent to browser 12 to create the dynamic content.
  • Control page 24 is preferably made invisible to the user of browser 12 through the use of conventional HTML techniques, such as invisible pop-up windows.
  • Control page 24 may also comprise a hidden frame or floating frame as long as the HTTP stream is established independent from the HTTP stream of display page 22 .
  • server 14 should periodically sends non-operational messages (i.e. messages with no side-effects) through the HTTP stream of control page 24 .
  • the dynamic updating 28 of display page 22 occurs when server 14 sends commands 26 through control page 24 to browser 12 .
  • Commands 26 comprise the DHTML instructions for changing predetermined portions of display page 22 , thereby creating dynamic content.
  • Commands 26 are complete script fragments that are packaged into a segment of a multi-part HTTP reply. As the script fragments are delivered into browser 12 , they are interpreted and executed by the script handling capabilities of browser accessing the document object model, thereby resulting in the desired dynamic changes in the display page 22 .
  • server 14 can perform dynamic updates to display page 22 , thereby allowing for dynamic content such as stock price ticks, temperature fluctuations, etc. that is ordinarily only achieved by using browser plug-ins.
  • the two independent streams are used to avoid the problem of browsers 12 being of indeterminate behavior when it comes to script operations on pages that have not fully loaded. By loading display page 22 separately, the problem is avoided.
  • an event handler such as onLoad
  • control page 24 the possibility of control stream 24 operating on objects on display page 22 that have yet to be loaded is eliminated. Since the HTTP stream of control page 24 never closes, the event handler of control page 24 can catch an inadvertent disconnection establish a reconnection using any reasonable conventional reconnection strategy.

Abstract

A process for creating server-driven dynamic web content without the use of browser add-ins or plug-in programs. Rather than relying on a plug-in on the browser side, the server uses an independent and persistent HTTP connection to stream commands to the browser that result in dynamic updates of the displayed web page. When a browser requests a page that will be dynamically updated from the server side, the server makes an HTTP reply that results in the browser making at least two HTTP requests. The first request results in the server providing a display page. The second request establishes an independent HTTP connection that serves as a control stream for the server to send commands to the browser. The commands are implemented through the document object model of the browser and result in the dynamic updating of the display page.

Description

    BACKGROUND OF THE INVENTION
  • 1. Field of Invention
  • The present invention relates to internet web pages and, more specifically, to a process for creating server-side controllable dynamic web pages in modern web browsers (HTTP clients).
  • 2. Description of Prior Art
  • Internet web pages were initially intended to be static and the web page delivery protocol, HTTP, was designed for the request and delivery of static web pages. Dynamic content has since been added to web pages to enable animation and create “live” pages. Convention says that dynamic web pages with updates driven by the server side, as opposed to the user, require external programs, such as Java or ActiveX components, to enable the animation or dynamic content. Plug-ins generally receive individual executable programs from the server, such as applets, and then run the programs to provide server driven dynamic content.
  • Although these external programs can provide the desired server driven dynamic content, such programs are nevertheless disadvantageous because they require downloading and/or installation before server driven dynamic content is available. The use of external programs also involves encumbrances such as version upgrades, which leads to code maintenance, and security compliance must be performed on each external program.
  • 3. Objects and Advantages
  • It is a principal object and advantage of the present invention to provide a method for creating dynamic web pages driven by the server using native modern web browser capabilities, such as a comprehensive and global document object model and scripting language that is able to access the document object model.
  • It is an additional object and advantage of the present invention to provide a method for creating server driven dynamic web pages that does not require downloading and/or installing additional programs into a modem web browser.
  • It is a further object and advantage of the present invention to provide a method for creating dynamic web pages that does not require additional security compliance certification.
  • Other objects and advantages of the present invention will in part be obvious, and in part appear hereinafter.
  • SUMMARY OF THE INVENTION
  • The present invention comprises a process for creating server-side controllable dynamic web content in web browsers (HTTP clients) that support a document object model and a scripting language able to access the document object model, without the use of browser add-in or plug-in programs, such as Java or ActiveX components. The process comprises the use of two or more independent HTTP request streams: one for displaying a webpage and another for streaming the commands that create dynamic updates. At least a first stream loads into the HTTP client for the creation of visible content, the “display stream.” At least a second stream forms an invisible “control stream” that sends native browser scripts to effect the desired change in visible content. The control stream may also establish an HTTP “heartbeat” to avoid client timeouts, per HTTP specifications, and can optionally control an inadvertent termination of the control stream.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a high-level flow chart of a process for creating dynamic web content according to the present invention.
  • FIG. 2 is a mid-level flowchart of the dynamic updating of a display page according to the present invention.
  • DETAILED DESCRIPTION
  • Referring now to the figures wherein like numerals refer to like parts throughout, there is seen in FIG. 1 a process 10 for enabling dynamic web content in a modem web browser 12 (i.e., one that supports HTML 4.0 and higher and implements standard DHTML constructs and a document object model in a global namespace) from the server 14 side. Process 10 begins when browser 12 makes a standard HTTP request 16 of server 14 for a web page that server 14 will provide dynamic content. In response to the HTTP request 16, server 14 make an HTML reply 18. HTML reply 18 results in browser making at least two HTTP requests 20. A standard HTML reply, such as one that would otherwise trigger browser 12 to request multiple frames, DHTML, floating frames, or the creation of sub-windows, is used to trigger browser 12 to make multiple HTTP requests 20. For example, the following HTML code will create two independent streams using frames:
    <frameset rows=”10,10”>
    <frame id=display src=display1.html>
    <frame id=control src=display2.html>
    </frameset>
  • In response to multiple HTTP requests 20 from browser 12, server 16 provides at least one display page 22 and at least one control page 24. Display page 22 is the original web page sought by browser 12 that is enhanced according to process 10 to include dynamic content. Control page 24 serves as a control HTTP stream through which commands 26 are sent to browser 12 to create the dynamic content. Control page 24 is preferably made invisible to the user of browser 12 through the use of conventional HTML techniques, such as invisible pop-up windows. Control page 24 may also comprise a hidden frame or floating frame as long as the HTTP stream is established independent from the HTTP stream of display page 22. In order to insure that control page 24 does not time-out in clients implementing the HTTP timeout protocol (inter-character), server 14 should periodically sends non-operational messages (i.e. messages with no side-effects) through the HTTP stream of control page 24.
  • Referring to FIG. 2, the dynamic updating 28 of display page 22 occurs when server 14 sends commands 26 through control page 24 to browser 12. Commands 26 comprise the DHTML instructions for changing predetermined portions of display page 22, thereby creating dynamic content. Commands 26 are complete script fragments that are packaged into a segment of a multi-part HTTP reply. As the script fragments are delivered into browser 12, they are interpreted and executed by the script handling capabilities of browser accessing the document object model, thereby resulting in the desired dynamic changes in the display page 22. As a result, server 14 can perform dynamic updates to display page 22, thereby allowing for dynamic content such as stock price ticks, temperature fluctuations, etc. that is ordinarily only achieved by using browser plug-ins.
  • The two independent streams, one for display page 22 and one for control page 24, are used to avoid the problem of browsers 12 being of indeterminate behavior when it comes to script operations on pages that have not fully loaded. By loading display page 22 separately, the problem is avoided. By using an event handler, such as onLoad, to initiate the loading of control page 24, the possibility of control stream 24 operating on objects on display page 22 that have yet to be loaded is eliminated. Since the HTTP stream of control page 24 never closes, the event handler of control page 24 can catch an inadvertent disconnection establish a reconnection using any reasonable conventional reconnection strategy.

Claims (9)

1. A process of creating dynamic content in a webpage, comprising:
establishing a first HTTP stream between a server and a browser, said browser having a document object model and a scripting language capable of accessing the document object model, wherein said browser is capable of event handling;
transmitting said webpage to said browser through said first HTTP stream; and
establishing a second HTTP stream between said server and said browser;
sending commands in said scripting language from said server to said browser through said second HTTP stream, wherein said commands are implemented through said document object model to dynamically alter said webpage.
2. The process of claim 1, further comprising sending non-operational messages through said second HTTP stream to prevent termination of said second HTTP stream by said browser.
3. The process of claim 1, wherein said second HTTP stream is invisible to a user of said browser.
4. The process of claim 1, wherein said first HTTP stream is established and said webpage is transmitted before said second HTTP stream is established.
5. The process of claim 2, wherein said non-operational messages are null scripts.
6. A system for enabling dynamic content in a webpage, comprising:
a server for establishing at least two independent HTTP connections;
a browser having a document object model and a scripting language capable of accessing the document object model, wherein said browser is capable of event handling; and
wherein said server provides a webpage through at least a first of said two independent HTTP connections and sends commands in said scripting language through at least a second of said two independent HTTP connections and wherein said commands are implemented by said browser through said document object model to update said webpage.
7. The system of claim 6, wherein said webpage is provided to said browser before said commands are sent to said browser.
8. The system of claim 6, wherein said first of said two independent HTTP connections is established before said second of said two independent HTTP connections.
9. The system of claim 65, wherein said commands are complete script fragments packaged into a segment of a multi-part HTTP reply.
US10/702,632 2003-11-06 2003-11-06 Process for creating dynamic web pages driven from the server side Abandoned US20050102611A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US10/702,632 US20050102611A1 (en) 2003-11-06 2003-11-06 Process for creating dynamic web pages driven from the server side

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US10/702,632 US20050102611A1 (en) 2003-11-06 2003-11-06 Process for creating dynamic web pages driven from the server side

Publications (1)

Publication Number Publication Date
US20050102611A1 true US20050102611A1 (en) 2005-05-12

Family

ID=34551704

Family Applications (1)

Application Number Title Priority Date Filing Date
US10/702,632 Abandoned US20050102611A1 (en) 2003-11-06 2003-11-06 Process for creating dynamic web pages driven from the server side

Country Status (1)

Country Link
US (1) US20050102611A1 (en)

Cited By (29)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20040054802A1 (en) * 2002-09-16 2004-03-18 Iteration Software, Inc. Apparatus and method for instant messaging collaboration
US20050262075A1 (en) * 2004-05-21 2005-11-24 Bea Systems, Inc. Systems and methods for collaboration shared state management
US20070061700A1 (en) * 2005-09-12 2007-03-15 Microsoft Corporation Initial server-side content rendering for client-script web pages
US20070061708A1 (en) * 2005-09-12 2007-03-15 Microsoft Corporation Script markup
US20080046505A1 (en) * 2002-09-16 2008-02-21 Tana Christine Netsch Method and apparatus for ensuring accountability in the examination of a set of data elements by a user
US20080046803A1 (en) * 2002-09-06 2008-02-21 Beauchamp Tim J Application-specific personalization for data display
US20080046837A1 (en) * 2003-03-17 2008-02-21 Tim Beauchamp Transparent windows methods and apparatus therefor
US20080043256A1 (en) * 2002-09-16 2008-02-21 Tal Broda Data presentation methods and apparatus to facilitate printing and reviewing
US20080307043A1 (en) * 2007-06-11 2008-12-11 Paul Raymond Dorsey Method and architecture supporting high performance web applications
US20090183227A1 (en) * 2008-01-11 2009-07-16 Microsoft Corporation Secure Runtime Execution of Web Script Content on a Client
US7577749B1 (en) * 2004-12-03 2009-08-18 Ux Ltd. Emulation of persistent HTTP connections between network devices
US20090288077A1 (en) * 2008-05-15 2009-11-19 Microsoft Corporation Runtime versioning and distribution of dynamic web-elements
US20100131595A1 (en) * 2008-11-27 2010-05-27 Ricoh Company, Ltd. Apparatus and method for updating displayed web page
US20100161708A1 (en) * 2005-02-17 2010-06-24 Chang Seok Lee System of providing contents information on idle-mode screen of mobile terminal using personal computer of functioning as server, method thereof and computer readable record medium on which program for executing method is recorded
CN101441644B (en) * 2007-11-19 2010-11-17 英福达科技股份有限公司 Web page annotation system and method
US7899879B2 (en) 2002-09-06 2011-03-01 Oracle International Corporation Method and apparatus for a report cache in a near real-time business intelligence system
US7912899B2 (en) 2002-09-06 2011-03-22 Oracle International Corporation Method for selectively sending a notification to an instant messaging device
US7941542B2 (en) * 2002-09-06 2011-05-10 Oracle International Corporation Methods and apparatus for maintaining application execution over an intermittent network connection
US8001185B2 (en) 2002-09-06 2011-08-16 Oracle International Corporation Method and apparatus for distributed rule evaluation in a near real-time business intelligence system
US8165993B2 (en) 2002-09-06 2012-04-24 Oracle International Corporation Business intelligence system with interface that provides for immediate user action
US20120210209A1 (en) * 2009-11-06 2012-08-16 Toby Biddle usability testing tool
US8255454B2 (en) 2002-09-06 2012-08-28 Oracle International Corporation Method and apparatus for a multiplexed active data window in a near real-time business intelligence system
US20140006465A1 (en) * 2011-11-14 2014-01-02 Panzura, Inc. Managing a global namespace for a distributed filesystem
US9148467B1 (en) * 2007-12-05 2015-09-29 Appcelerator, Inc. System and method for emulating different user agents on a server
CN106503135A (en) * 2016-10-20 2017-03-15 浪潮通用软件有限公司 A kind of method and apparatus of WEB page loading
US10534851B1 (en) 2014-12-19 2020-01-14 BloomReach Inc. Dynamic landing pages
US10580051B2 (en) * 2010-05-18 2020-03-03 Google Llc Background element associated with an application installed in a browser application
US11100554B1 (en) 2014-03-13 2021-08-24 BloomReach Inc. System, method and computer program product for providing thematic landing pages
US11227097B2 (en) * 2012-06-14 2022-01-18 Open Text Sa Ulc Systems and methods of a script generation engine

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20030235279A1 (en) * 2002-03-27 2003-12-25 Morgan Richomme Dynamic web conference monitoring through a streaming mechanism
US20050050164A1 (en) * 2000-05-18 2005-03-03 Burd Gary S. Server-side control objects for processing client-side user interface elements
US20050177595A1 (en) * 2002-07-11 2005-08-11 Youramigo Pty Ltd Link generation system

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20050050164A1 (en) * 2000-05-18 2005-03-03 Burd Gary S. Server-side control objects for processing client-side user interface elements
US20030235279A1 (en) * 2002-03-27 2003-12-25 Morgan Richomme Dynamic web conference monitoring through a streaming mechanism
US20050177595A1 (en) * 2002-07-11 2005-08-11 Youramigo Pty Ltd Link generation system

Cited By (45)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7899879B2 (en) 2002-09-06 2011-03-01 Oracle International Corporation Method and apparatus for a report cache in a near real-time business intelligence system
US8577989B2 (en) 2002-09-06 2013-11-05 Oracle International Corporation Method and apparatus for a report cache in a near real-time business intelligence system
US8255454B2 (en) 2002-09-06 2012-08-28 Oracle International Corporation Method and apparatus for a multiplexed active data window in a near real-time business intelligence system
US9094258B2 (en) 2002-09-06 2015-07-28 Oracle International Corporation Method and apparatus for a multiplexed active data window in a near real-time business intelligence system
US8165993B2 (en) 2002-09-06 2012-04-24 Oracle International Corporation Business intelligence system with interface that provides for immediate user action
US20080046803A1 (en) * 2002-09-06 2008-02-21 Beauchamp Tim J Application-specific personalization for data display
US8001185B2 (en) 2002-09-06 2011-08-16 Oracle International Corporation Method and apparatus for distributed rule evaluation in a near real-time business intelligence system
US8566693B2 (en) 2002-09-06 2013-10-22 Oracle International Corporation Application-specific personalization for data display
US7945846B2 (en) 2002-09-06 2011-05-17 Oracle International Corporation Application-specific personalization for data display
US7941542B2 (en) * 2002-09-06 2011-05-10 Oracle International Corporation Methods and apparatus for maintaining application execution over an intermittent network connection
US7912899B2 (en) 2002-09-06 2011-03-22 Oracle International Corporation Method for selectively sending a notification to an instant messaging device
US20080043256A1 (en) * 2002-09-16 2008-02-21 Tal Broda Data presentation methods and apparatus to facilitate printing and reviewing
US8402095B2 (en) 2002-09-16 2013-03-19 Oracle International Corporation Apparatus and method for instant messaging collaboration
US20080046505A1 (en) * 2002-09-16 2008-02-21 Tana Christine Netsch Method and apparatus for ensuring accountability in the examination of a set of data elements by a user
US7668917B2 (en) 2002-09-16 2010-02-23 Oracle International Corporation Method and apparatus for ensuring accountability in the examination of a set of data elements by a user
US20040054802A1 (en) * 2002-09-16 2004-03-18 Iteration Software, Inc. Apparatus and method for instant messaging collaboration
US20080046837A1 (en) * 2003-03-17 2008-02-21 Tim Beauchamp Transparent windows methods and apparatus therefor
US7904823B2 (en) 2003-03-17 2011-03-08 Oracle International Corporation Transparent windows methods and apparatus therefor
US20050262075A1 (en) * 2004-05-21 2005-11-24 Bea Systems, Inc. Systems and methods for collaboration shared state management
US7577749B1 (en) * 2004-12-03 2009-08-18 Ux Ltd. Emulation of persistent HTTP connections between network devices
US20100161708A1 (en) * 2005-02-17 2010-06-24 Chang Seok Lee System of providing contents information on idle-mode screen of mobile terminal using personal computer of functioning as server, method thereof and computer readable record medium on which program for executing method is recorded
US7814410B2 (en) * 2005-09-12 2010-10-12 Workman Nydegger Initial server-side content rendering for client-script web pages
US7945853B2 (en) * 2005-09-12 2011-05-17 Microsoft Corporation Script markup
US20070061700A1 (en) * 2005-09-12 2007-03-15 Microsoft Corporation Initial server-side content rendering for client-script web pages
US20070061708A1 (en) * 2005-09-12 2007-03-15 Microsoft Corporation Script markup
US20080307043A1 (en) * 2007-06-11 2008-12-11 Paul Raymond Dorsey Method and architecture supporting high performance web applications
CN101441644B (en) * 2007-11-19 2010-11-17 英福达科技股份有限公司 Web page annotation system and method
US9148467B1 (en) * 2007-12-05 2015-09-29 Appcelerator, Inc. System and method for emulating different user agents on a server
US20090183227A1 (en) * 2008-01-11 2009-07-16 Microsoft Corporation Secure Runtime Execution of Web Script Content on a Client
US20090288077A1 (en) * 2008-05-15 2009-11-19 Microsoft Corporation Runtime versioning and distribution of dynamic web-elements
US8490077B2 (en) * 2008-05-15 2013-07-16 Microsoft Corporation Runtime versioning and distribution of dynamic web-elements
US20100131595A1 (en) * 2008-11-27 2010-05-27 Ricoh Company, Ltd. Apparatus and method for updating displayed web page
US8346852B2 (en) * 2008-11-27 2013-01-01 Ricoh Company, Ltd. Apparatus and method for updating displayed web page
US9058429B2 (en) * 2009-11-06 2015-06-16 Toby Biddle Usability testing tool
US20120210209A1 (en) * 2009-11-06 2012-08-16 Toby Biddle usability testing tool
US10580051B2 (en) * 2010-05-18 2020-03-03 Google Llc Background element associated with an application installed in a browser application
US9805054B2 (en) * 2011-11-14 2017-10-31 Panzura, Inc. Managing a global namespace for a distributed filesystem
US10296494B2 (en) 2011-11-14 2019-05-21 Panzura, Inc. Managing a global namespace for a distributed filesystem
US20140006465A1 (en) * 2011-11-14 2014-01-02 Panzura, Inc. Managing a global namespace for a distributed filesystem
US20220114329A1 (en) * 2012-06-14 2022-04-14 Open Text Sa Ulc Systems and methods of a script generation engine
US11741293B2 (en) * 2012-06-14 2023-08-29 Open Text Sa Ulc Systems and methods of a script generation engine
US11227097B2 (en) * 2012-06-14 2022-01-18 Open Text Sa Ulc Systems and methods of a script generation engine
US11100554B1 (en) 2014-03-13 2021-08-24 BloomReach Inc. System, method and computer program product for providing thematic landing pages
US10534851B1 (en) 2014-12-19 2020-01-14 BloomReach Inc. Dynamic landing pages
CN106503135A (en) * 2016-10-20 2017-03-15 浪潮通用软件有限公司 A kind of method and apparatus of WEB page loading

Similar Documents

Publication Publication Date Title
US20050102611A1 (en) Process for creating dynamic web pages driven from the server side
KR101059904B1 (en) Techniques for delivering personalized content with a real-time routing network
US10931731B2 (en) Adaptive learning periods in HTML streaming
US7930362B2 (en) Techniques for delivering personalized content with a real-time routing network
US7043525B2 (en) Techniques for updating live objects at clients using a dynamic routing network
US20190146963A1 (en) Storing State in a Dynamic Content Routing Network
US6226642B1 (en) Content modification of internet web pages for a television class display
US6880010B1 (en) Methods, systems, and computer program products that request updated host screen information from host systems in response to notification by servers
US6311215B1 (en) System for dynamic determination of client communications capabilities
USRE45636E1 (en) Controlling the order in which content is displayed in a browser
US8260843B2 (en) Apparatus and method for providing remote user interface
US20050278726A1 (en) Storing state in a dynamic content routing network
CA2413684A1 (en) Method for selectively reloading frames of a web-page
US20040168122A1 (en) System, method and computer readable medium for transferring and rendering a web page
US8863150B2 (en) Device connectivity framework
US6944827B2 (en) System and method of data transmission for computer networks utilizing HTTP
US20060235942A1 (en) System for processing requests to portlets
US20160105319A1 (en) Device Connectivity Framework
EP1641217A2 (en) Method, apparatus and system for passing messages to a web browser
CN110674435A (en) Page access method, server, terminal, electronic equipment and readable storage medium
JP2005107662A (en) Www system processing method and system
US20030208634A1 (en) Method and apparatus for passing pre-processed data to server-side applications
CN103227827A (en) Resource request method and device
CN115348317B (en) Method, device and system for realizing instant messaging of web system

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

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