Table of Contents Previous Next
Logo
Glacier2 : 42.7 Session Management
Copyright © 2003-2010 ZeroC, Inc.

42.7 Session Management

A Glacier2 router requires a client to create a session (see Section 42.3.6) and forwards requests on behalf of the client until its session expires. A session expires when it is explicitly destroyed, or when it times out due to inactivity.
If your application needs to track the session activities of a router, you can configure the router to use a custom session manager. For example, your applica­tion may need to acquire resources and initialize the state of back-end services for each new session, and later reclaim those resources when the session expires.
As with the authentication facility described in Section 42.6, Glacier2 provides two session manager interfaces that an application can implement. The SessionManager interface receives notifications about sessions that use password authentication, while the SSLSessionManager interface is for sessions authenti­cated using SSL certificates.

42.7.1 The Session Manager Interfaces

The relevant Slice definitions are shown below:
module Glacier2 {
    exception CannotCreateSessionException {
        string reason;
    };

    interface Session {
        void destroy();
    };

    interface SessionManager {
        Session* create(string userId, SessionControl* control)
            throws CannotCreateSessionException;
    };

    interface SSLSessionManager {
        Session* create(SSLInfo info, SessionControl* control)
            throws CannotCreateSessionException;
    };
};
When a client invokes createSession on the Router interface (see Section 42.3.6), the router validates the client’s user name and password and then calls SessionManager::create. Similarly, a call to createSessionFromSecure­Connection causes the router to invoke SSLSessionManager::create. The SSLInfo structure is described in Section 42.6.1. The second argument to the create operations is a proxy for a SessionControl object, which a session can use to perform dynamic filtering (see Section 42.8).
The create operations must return the proxy of a new Session object, or raise CannotCreateSessionException and provide an appropriate reason. The Session proxy returned by create is ultimately returned to the client as the result of createSession or createSessionFromSecureConnection.
Glacier2 invokes the destroy operation on a Session proxy when the session expires. This provides a custom session manager with the opportunity to reclaim resources that were acquired for the session during create.
Note: The create operations may be called with information that identifies an existing session. For example, this can occur if a client has lost its connection to the router and therefore must create a new session but its previous session has not expired yet, and the router therefore has not yet invoked destroy on its Session proxy. A session manager implementation must be prepared to handle this situation.
To configure the router with a custom session manager, define the properties Glacier2.SessionManager or Glacier2.SSLSessionManager with the proxies of the session manager objects. If necessary, you can configure a router with proxies for both types of session managers. If a session manager proxy is not supplied, the call to createSession or createSessionFromSecureCon­nection always returns a null proxy.
The router attempts to contact the configured session manager at startup. If the object is unreachable, the router logs a warning message but continues its normal operation (you can suppress the warning using the --nowarn option – see Section 42.3.3). The router does not contact the session manager again until it needs to invoke an operation on the object. For example, when a client asks the router to create a new session, the router makes another attempt to contact the session manager; if the session manager is still unavailable, the router logs a message and returns CannotCreateSessionException to the client.
A sample implementation of the SessionManager interface is provided in the demo/Glacier2/callback directory.

42.7.2 Session Timeouts

The value of the Glacier2.SessionTimeout property specifies the number of seconds a session must be inactive before it expires. If the property is not defined, then sessions never expire due to inactivity. If a non-zero value is speci­fied, it is very important that the application chooses a value that does not result in premature session expiration. For example, if it is normal for a client to create a session and then have long periods of inactivity, then a suitably long timeout must be chosen, or the client must actively keep its session alive, or timeouts must be disabled altogether.
Once a session has expired (or been destroyed for some other reason), the client will no longer be able to send requests via the router, but instead receives a ConnectionLostException. The client must explicitly create a new session in order to continue using the router. If necessary, clients can use a dedicated thread to keep their sessions alive (see Section 42.3.6).
In general, we recommend the use of an appropriate session timeout, other­wise resources created for each session will accumulate in the router. However, you can safely disable the session timeout if the server regularly calls back to the client. In that case, Glacier2 will automatically destroy the session if a failure occurs while forwarding a server callback to the client.

42.7.3 Invocation Timeouts

If you require invocation timeouts in the client for routed proxies, you must set the timeout on the router that you use to establish the session. This is because the Ice run time forwards the invocation to Glacier2, and the timeout applies to that invo­cation.
In other words, whatever timeout you set on the router you use to create the session is the timeout that applies to all routed proxies. Do not attempt to override the timeout on a per-proxy basis; if you do, any setting other than the timeout used to establish the session results in a ConnectionLostException. This is because proxies with different timeout values establish separate connections, but there can be only one connection to Glacier2.1
For invocations made by Glacier2 to the server, whatever timeout value is set on the first proxy that is used to make an invocation applies to all proxies for the same object. This is because Glacier2 adds the proxy to its routing table during the first invocation and, thereafter, reuses that cached proxy for all invocations to the same object identity.
Here is an example to illustrate this:
// 10second session timeout for router.
ObjectPrx router = communicator>stringToProxy(
    "Glacier2/router:tcp h host1 p 4063 t 10000");
communicator>setDefaultRouter(
    RouterPrx::uncheckedCast(router));

// Ping with 20second timeout
communicator>stringToProxy("id:tcp h host2 p 12345 t 20000")
    >ice_ping();

// Ping with 30second timeout
communicator>stringToProxy("id:tcp h host2 p 12345 t 30000")
    >ice_ping();
In this case, all invocations made by the client use a 10‑second timeout to forward the invocations to Glacier2. The first call to ice_ping, when forwarded by Glacier2 to the server, uses a 20‑second timeout. The second call to ice_ping also uses a 20‑second timeout, even though the proxy specifies a 30‑second timeout.
If you have a timeout on both the client–Glacier2 and the Glacier2–server connections, the timeout on the client–Glacier2 connection should be slightly longer; otherwise, invocation timeouts that are encountered by Glacier2 when it forwards an operation to the server cannot be propagated back to the client.

42.7.4 Connection Caching

Glacier2 disables connection caching on session manager proxies, therefore if you configure the router with a session manager proxy that contains multiple endpoints, the router attempts to use a different endpoint for each invocation on a session manager. The purpose of this behavior is to distribute the load among multiple active session manager objects without using the replication features provided by IceGrid. Be aware that including an invalid endpoint in your session manager proxy, such as the endpoint of a session manager server that is not currently running, can cause router clients to experience delays during session creation.
If your session managers are in a replica group, Section 42.13.2 provides more information on the router’s caching behavior.

1
A future version of Ice may make it illegal to set a timeout on a routed proxy.


Table of Contents Previous Next
Logo