4D v14.3Web Sessions Management |
||
|
4D v14.3
Web Sessions Management
Web Sessions Management
The 4D Web Server provides a simple and complete mechanism for managing user sessions. This automatic mechanism allows successive Web clients to reuse the same context (selections and variable instances) from one request to another. This is done through a private cookie set by 4D itself: "4DSID". On each web client request, 4D checks for the presence and the value of the 4DSID cookie:
The session management mechanism must be enabled on your 4D Web server so that you can use it in your application. By default, this mechanism is enabled in databases created with 4D v13 and later versions. However, for compatibility reasons, it is disabled in databases converted from previous versions of 4D. You must enable it explicitly in order to benefit from this new functionality. There are two ways to enable automatic session management:
In both cases, the setting is local to the machine; so it can be different on the 4D Server Web server and the Web servers of remote 4D machines. The lifespan of an inactive cookie is 8 hours (480 minutes) by default but this can be changed using the WEB SET OPTION command. You can set a different lifespan for cookies (Web Inactive session timeout option) from the one for processes associated with server sessions (Web Inactive process timeout option): for instance, you may want for a shopping "basket" to remain valid for 24 hours but, for optimization purposes, you do not want to keep the process for that long. In this case, you can set a process life duration of 4 hours, for example. At the end of this period, the On Web Session Suspend database method is called and you can store the variables and selections related to the session before the process is killed. The next time the Web client connects (up to 24 hours later), the cookie is sent back to the server and you can reload the session information in the On Web Connection Database Method (see example below). If necessary, you can use the WEB CLOSE SESSION command to force the expiration of the cookie at any time and thus close the session. 4D automatically destroys the oldest inactive contexts when the maximum number of kept contexts is reached (this number is 100 by default and can be changed using the WEB SET OPTION command). This example shows how easy it is to manage sessions using the On Web Connection Database Methodand the On Web Session Suspend database method. Here is the code of the On Web Connection Database Method: // On Web Connection (or On Web Authentication) Code for On Web Session Suspend database method : // On Web Session Suspend Since the session management mechanism is based on the use of cookies, the 4D HTTP server is not able to maintain a session if the Web client does not accept cookies. In this case, each request is treated as a new connection and the Compiler_Web method is executed on each connection. You can check for cookie support with the WEB GET HTTP HEADER command. The 4D HTTP Server keeps track of the IP that started a session. If a different IP tries to access an existing session, an HTTP 400 error is returned to the client. |
PROPERTIES
Product: 4D SEE ALSO
On Web Session Suspend database method ARTICLE USAGE
4D Language Reference ( 4D v14 R2) |