---
title: "How can we enable Client Management feature on coldfusion server?"  
description: "How can we enable Client Management feature on coldfusion server?"  
author: "James Smith"  
published: 2011-05-17  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/930/how-can-we-enable-client-management-feature-on-coldfusion-server  
category: "cold fusion"  
tags: ["cold fusion"]  
reading_time: 1 minute  

---

# How can we enable Client Management feature on coldfusion server?

First we create an application.cfm page with the following attributes set: <~cfapplication name="YourApp" clientmanagement="Yes" sessionmanagement="Yes" sessiontimeout="#CreateTimeSpan(0,0,30,0)#" applicationtimeout="#CreateTimeSpan(1,0,0,0)#">

This page process on each calls to the website, and can be used to set and check the state of the users client variables but the client variables require cookies to be stored on the users’ browser.

## Answers

### Answer by James Smith

First we create an application.cfm page with the following attributes set: <~cfapplication name="YourApp" clientmanagement="Yes" sessionmanagement="Yes" sessiontimeout="#CreateTimeSpan(0,0,30,0)#" applicationtimeout="#CreateTimeSpan(1,0,0,0)#">

This page process on each calls to the website, and can be used to set and check the state of the users client variables but the client variables require cookies to be stored on the users’ browser.


---

Original Source: https://www.mindstick.com/interview/930/how-can-we-enable-client-management-feature-on-coldfusion-server

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
