ColdFusion 10 のクライアント変数に問題があります。あるページでクライアント変数を作成すると、そのページのみに影響し、アプリケーションの別のページの変数にアクセスできません。Application.cfc のコードは次のとおりです。
this.Name = "test";
this.ApplicationTimeout = CreateTimeSpan(0,0,0,0);
this.ClientManagement= "yes";
this.ClientStorage = "clientstorage";
this.SessionManagement = true;
this.SessionTimeout = CreateTimeSpan( 0, 0, 20, 0 );
this.SetClientCookies = "yes";
this.SetDomainCookies = "no";
this.ScriptProtect = "all";