ColdFusion 10 CFCookie not honoring domain attribute
问题 I have an Application.cfc with the following settings: <cfset THIS.Name = "Test01" /> <cfset THIS.ApplicationTimeout = CreateTimeSpan(1,0,0,0) /> <cfset THIS.sessionTimeout = CreateTimeSpan(1,0,0,0) /> <cfset THIS.clientManagement = false /> <cfset THIS.SessionManagement = true /> <cfset THIS.SetClientCookies = false /> <cfset THIS.setDomainCookies = false /> And I attempted to send the following cookies: <cfcookie name="CFID" value="#session.CFID#" domain=".test01.domain.net" path="/"