Click here to Skip to main content
15,881,803 members
Articles / Operating Systems / Windows

ColdFusion State Management

Rate me:
Please Sign up or sign in to vote.
2.71/5 (3 votes)
15 Sep 2007CPOL9 min read 41K   127   8   3
This article is used to provide the idea regarding how the ColdFusion Application Server maintains state and how many different types of Session management are available for ColdFusion.

Introduction

This article is used to provide the idea regarding how the ColdFusion Application Server maintains state and how many different types of Session management are available for ColdFusion.

It can solve the problems of people working with ColdFusion integration with Java Servlet, and other specific integration.

Background

State Management: State management consists of two parts: 

  1. Identifying a session based on the browser ID
  2. Expiring the session after too much time (i.e., the time passes greater than "sessiontimeout" attribute value of cfapplication tag inside the application.cfm or application.cfc file) passes between requests from a given user.

ColdFusion has two types of session management:

  1. Traditional Session Management
  2. J2EE Session Management (ColdFusion MX introduces) ColdFusion State/Session Management

Using the Code

1. Traditional Session Management

Traditional coldfusion session management uses the CFID and CFTOKEN values to track user's browser session. Here the session.sessionid comprises application name, CFID and CFTOKEN value.

By default, all ColdFusion versions write CFID and CFTOKEN as persistent cookie values in the client browser with the cfapplication tag. Persistent cookies are cookies that exist even after a client browser is closed or we can say persistent cookies remain available for future browsers.

Identifying a session by using CFID and CFTOKEN values

If you have used CFLOCATION tag without setting "addToken" attribute value to "no", then you may have noticed that ColdFusion adds two URL parameters to the end of the URL. The combination of CFID and CFTOKEN together form the browser ID.

ColdFusion uses two numbers (CFID and CFTOKEN) instead of a single ID value. It's a precaution that makes guessing the complete browser ID harder for someone. CFID is a monotonically increasing number, so the first session on the server gets CFID 1, the next session gets CFID 2, and so on. You can probably imagine that if you were CFID number 5000, guessing that the session before you was CFID 4999 wouldn't be too hard, and assuming session 4999 and possibly gaining access to private data would be easy for you. That's why CFTOKEN is used with CFID. CFTOKEN is an eight-digit random number that ColdFusion generates along with CFID. You can't predict the CFTOKEN as you can the CFID, so it adds an extra measure of security.

Ways of Persisting CFID and CFTOKEN Between Requests

In the following two ways, CFID and CFTOKEN values are persisted from request to request.

  1. You can store CFID and CFTOKEN in a cookie on the user's browser. This cookie is sent back to ColdFusion with every request.
  2. You can pass CFID and CFTOKEN in the URL of every request. This overrides any value that may also be stored in a cookie.

All you need to do to set a cookie for CFID and CFTOKEN is set an attribute in your CFAPPLICATION tag, as follows:

XML
<cfapplication ... setclientcookies="Yes">

ColdFusion handles the setting and retrieving of CFID and CFTOKEN. The problem with this automatic handling of CFID and CFTOKEN is that it requires that the user have cookies enabled. If the user has disabled cookies, you can't set client variables so CFID and CFTOKEN can't use for more than one request—because ColdFusion can't see the cookie, and Server assumes that the user has not visited the site before and assigns a new CFID and CFTOKEN with each request.

If you want to set client variables even if users have cookies disabled, you must pass CFID and CFTOKEN as URL parameters in every URL in your site so that ColdFusion can see who you are, as the following code shows:

XML
<a href="pagename.cfm?CFID=#Client.CFID#&CFTOKEN=#Client.CFID#">

Or:

XML
<a href="pagename.cfm?#Client.URLToken#">

You also have a new syntax in ColdFusion MX that automatically chooses whether the page needs the URLToken appended to the end, as follows:

XML
<a href="#URLSessionFormat('pagename.cfm')#">

If the user has cookies enabled, URLSessionFormat () returns the URL unmodified. If cookies are disabled, URLSessionFormat() automatically appends the CFID and CFTOKEN to the URL.

Using a UUID for CFTOKEN

By default, Macromedia Coldfusion Server versions 4.5 and 5 assign a random eight-digit integer as a CFTOKEN value and Macromedia Coldfusion Server MX versions uses a crytographic-strength generator to create the random eight-digit CFTOKEN value. ColdFusion Server no longer validates any part of this token, allowing users to reassign this to any value they choose. It is possible for the same CFTOKEN value to be given to more than one user.

To strengthen the CFTOKEN value by making it a Universally unique number or impossible-to-guess, ColdFusion provides UUID (Universally Unique Identifier) value as shown below:

CFID: 1606

CFTOKEN: 5dbd2148f73730cf-520DAB22-4762-3D9E-F63219AD42A329EC

To get the Universally Unique CFTOKEN, we have to do some setting according to their versions.

For ColdFusion 4.5 and 5

On Windows Operating System
  • Step-1: Select Start > Run
  • Step-2: Type "regedit" and click OK.
  • Step-3: Navigate to the following registry key:
    HKEY_LOCAL_MACHINE\Software\Allaire\ColdFusion\CurrentVersion\Clients\UuidToken, if the key does not exist, right click on the clients key and choose New > String Value. Name the key UuidToken.
  • Step-4: Right click the UuidToken registry key. Select Modify.
  • Step-5: Enter a non-zero string value.
  • Step-6: Restart the ColdFusion Application Server.
On Linux\Unix
  • Step-1: Stop the ColdFusion processes (./cf_root/bin/stop -force).
  • Step-2: Open the cf_root/registry file in an editor (Vi, emacs, etc.).
  • Step-3: Navigate to the following registry key:
    hkey_local_machine\software\allaire\coldfusion\currentversion\clients:7
  • Step-4: Add the following entry ? Note the case ? For this key on the line below the "TimeOut" entry:
  • UuidToken: 1; REG_SZ
  • Step-5: Save the file and close the editor.
  • Step-6: Restart the ColdFusion processes (./cf_root/bin/start).
For ColdFusion MX 6.1 and MX 7.0
  • Step-1: Log in to the ColdFusion Administrator.
  • Step-2: Click Setting in the left navigation.
  • Step-3: Check the box provided for "Use UUID for CFTOKEN."
  • Step-4: Click the "Submit Changes" button.
  • Step-5: Log out from the ColdFusion Administrator.
  • Step-6: Restart the ColdFusion MX Application service.

2. J2EE Session Management ( ColdFusion MX introduces)

ColdFusion MX (CFMX) introduces J2EE Servlet session management in addition to the traditional ColdFusion session management. J2EE session management enables the sharing of session information between ColdFusion pages and JSP pages or Servlets within a single application. With J2EE session management, ColdFusion uses a new variable, the JSESSIONID, to track a user's browser session instead of CFID/CFTOKEN. ColdFusion MX still creates the CFID and CFTOKEN values, however, but these values are no longer used to uniquely identify browser sessions. J2EE session management does not require an Application name, so the SESSION.SESSIONID value becomes the JSESSIONID. Because the JSESSIONID is always written as a per-session value, it is destroyed when the browser is closed and a new one is created with each new browser session. JSESSIONID value is highly random.

JSESSIONID works in much the same way that CFID and CFTOKEN do. If a request is made that has no JSESSIONID attached, ColdFusion generates a new JSESSIONID and stores it in a non-persistent cookie on the user's browser. If the browser doesn't support cookies, you can pass JSESSIONID in the URL (All must be in uppercase), and ColdFusion uses the JSESSIONID from the URL to identify a user's session.

By enabling J2EE Session Management now splits the state-management mechanism into two parts:

  1. Session
  2. Client

Session variables now use JSESSIONID to identify the user's session, but Client variables still use CFID and CFTOKEN, because Client variables are not interoperable with JSP, as Session variables are. With J2EE session management enabled, CFML can share its Request, Session, and Application scopes with JSP and J2EE Servlet applications. You can't share Client variables with these non-ColdFusion applications, however, because J2EE doesn't use them.

Steps Required to Enable J2EE Session Management

To enable J2EE session management, the steps given below should be followed:

  • Log in to ColdFusion Administrator.
  • Go into the Memory Variables section.
  • Select the Use J2EE Session Variables checkbox.
  • Click Submit.
  • Restart both ColdFusion server and your Web server after enabling this option.

Problem Using URLSessionFormat() while J2EE sessions are enabled

You can use URLSessionFormat() to add JSESSIONID to the URL if necessary (if the client side cookies are not enabled). You do face a problem, however, in using URLSessionFormat() while J2EE sessions are enabled.

Normally, URLSessionFormat() creates a URL as follows:

http://127.0.0.1/pagename.cfm?CFID=2136&CFTOKEN=25334417

If J2EE sessions are enabled (and Client variables are disabled), however, URLSessionFormat() creates a URL similar to the following:

http://127.0.0.1/page.cfm;JSESSIONID=8030379221028482598796

instead of a question mark as in the first one, a semicolon introduces JSESSIONID. The semicolon is part of the J2EE Servlet standard, but Microsoft's Internet Information Server and Apache Web Server may not recognize the semicolon as valid. As such, attempting to use the URL from URLSessionFormat() if J2EE sessions are enabled may lead to a 404 File Not Found error if running against these incompatible Web servers.

Adding Client variables to the mix complicates the problem even more, as the following shows:

http://127.0.0.1/page.cfm;JSESSIONID=8030990701028482815171?
CFID=2148&CFTOKEN=76305005&jsessionid=8030990701028482815171

The semicolon is still there before JSESSIONID but the normal question mark that introduces the query string is appended after the JSESSIONID. Again, JSESSIONID is included twice, but the second version is lowercase, in violation of the J2EE standard.

Solution using URLSessionFormat() while J2EE sessions are enabled

The best solution is to use URLSessionFormat() if your Web server supports a semicolon as the character that delimits the URL from its parameters:

If not, append "Session.URLToken" to the page URL, as follows:

XML
<a href="page.cfm?#UCase(Session.URLToken)#">...</a>

Why do we use Ucase()? URLToken is included as a lowercase parameter; J2EE, however, requires that JSESSIONID be included as uppercase. If you don't include the call to UCase(), state is not maintained between requests.

Points of Interest

MAKE IT A PRACTICE WHEN WORKING WITH SESSION MANAGEMENT:

  1. For better purpose, you can set session timeout values to 20 minutes or less.
  2. Create CFID and CFToken as non-persistent cookies.
  3. Enable UUID CFToken for stronger ColdFusion session identifiers.
  4. Try to avoid passing session identifiers (CFID/CFToken or JESSIONID) on the URL.
  5. For J2EE sessions, ensure the session-timeout parameter is greater-than-or equal-to ColdFusion's Maximum Session Timeout.
  6. Only enable J2EE Session Variables if all applications on the server will be using it. Do not enable if applications require Client Management.
  7. If cookies are not available, use the URLSessionFormat function for links.
  8. Lock read/write access to Session variables which may cause race conditions.
  9. Do not overwrite the default Session variables.
  10. Loop over StructDelete(Session.variable) instead of using StructClear(Session) to remove variables from the Session scope.
  11. If clientManagement = "Yes" and clientStorage="Cookie", do not store sensitive information in the client's cookie. Any information that could aid in identity theft if revealed to a third-party should not be included in a cookie. For example, credit card number, security code for back account, SSN, etc.

Conclusions

State/Session Management is an important task for any web based applications. So you should be careful to maintain that in your application. Here you found each one having its own way of representation, but for more security purposes, you can chose any one between J2EE or UUID type.

History

  • 15th September, 2007: Initial post

- Chandrakanta Kar (Software Engineer, Mindfire Solutions)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWebserverfarm with Load Balancer? Pin
lars_pl17-Sep-07 22:49
lars_pl17-Sep-07 22:49 
AnswerRe: Webserverfarm with Load Balancer? Pin
Chandrakanta1-Nov-07 20:13
Chandrakanta1-Nov-07 20:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.