Life cycle of page, execution, desktop, session, application

From Documentation
Revision as of 07:46, 12 July 2010 by Maya001122 (talk | contribs) (Created page with '{{ZKDevelopersGuidePageHeader}} From small scope to big: *page : A single page. *execution<ref><tt>execution</tt> in ZK is a wrapper of <tt>request</tt> in JSP </ref> : Processi…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Life cycle of page, execution, desktop, session, application


Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


From small scope to big:

  • page
A single page.
Processing a request from client side. It can cross pages.
  • desktop
All pages serving the same URL, for one browser tab.
  • session
From user visit the web to user leave or timeout. All following pages are related to same session.
  • application
From the application service start to stop. It is cross session, cross users.

Note that, if you press "F5" to refresh the web page, it's a different desktop, but the same session.



Last Update : 2010/07/12

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.


  1. execution in ZK is a wrapper of request in JSP