<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - coldfusion - 6 - CFML_Reference - Tags-pt119.htm</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-26T03:27:38</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#44369" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#23177" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#19515" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#1025" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#854" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#853" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#633" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#572" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#524" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#472" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#465" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#44369">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#44369</link>
		<description>In addition to sdwebguy99's comment:&lt;br /&gt;I set a cookie (with cfcookie)  originally with the domain defined as &quot;domain.com&quot; - without &quot;www.&quot;, so it works accross subdomains - but after trying to alter the cookie's value using cfset,instead of modifying the existing cookie, a new cookie was created with the same name, but with the domain &quot;www.domain.com&quot;. (This is on CFMX 6.1)</description>
		<dc:creator>istvanb</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2006-01-22T20:11:50</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#23177">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#23177</link>
		<description>Something I have noticed. I use CFCOOKIE to set the cookie with an expires date of 20 years. Later in my app, I update the value of the cookie by using CFSET COOKIE.COOKIENAME = VALUE. Because I have cookie notification turned on, I see that the expires date of the new cookie is end of session. We are running CFMX 6.1 (no updater). Is this a known issue?</description>
		<dc:creator>sdwebguy99</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-10-29T16:09:28</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#19515">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#19515</link>
		<description>The documentation never tells you how to change the value of a cookie, leaving it for everyone to figure out;  here's how i finally figured it. &lt;br /&gt;&lt;br /&gt;&lt;cfset username=&quot;steve2&quot; &gt; &lt;br /&gt;&lt;cfif isDefined(&quot;cookie.rczqrz&quot;) &gt; &lt;br /&gt;	&lt;cfset cookie.rczqrz = username &gt; &lt;br /&gt;&lt;/cfif&gt;</description>
		<dc:creator></dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-08-04T12:22:43</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#1025">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#1025</link>
		<description>Couple of things I've noticed:&lt;br&gt;&lt;br&gt;1.  &lt;cfcookie&gt; always creates an uppercase cookie name.  CF is case-insensitive so if you set and read cookies only in CF you'll never notice.  But if other server code sets a lower- or mixed-case cookie, CF's Cookie scope will only report one of the values, and you can't update the lowercase cookie from CFMX unless you use &lt;cfheader name=&quot;Set-Cookie&quot; ...&gt;&lt;br&gt;&lt;br&gt;2.  If other code sets a cookie to a value with a comma in it and doesn't URL-encode it, CF gets very confused and only returns the part of the value in front of the comma.  According to Netscape's original vague cookie spec you shouldn't have funny characters like commas in the cookie name-value pair, but not everyone obeys the spec.  CF encodes and decodes funny characters in cookies that it sets and read.</description>
		<dc:creator>spage-mm</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-05-02T02:53:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#854">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#854</link>
		<description>oh... and BTW... I thought this documentation was gonna be updated... I'd like to see some examples and expanded discussion on the path and domain attributes and their effects. It would be even better if the docs in dwmx were atleast as complete as these... maybe even a livedox xml feed to dwmx 6.2? Oops sorry... This should be requested elsewhere. Sorry ;)&lt;br&gt;&lt;br&gt;wickedXen</description>
		<dc:creator>wickedXen</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-01-13T03:24:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#853">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#853</link>
		<description>Mr. Gilson...&lt;br&gt;All other Macromedia Documentation dictates that it isn't set, and so does experience. &lt;cfheader&gt; is suggested for a good reason. :)&lt;br&gt;&lt;br&gt;wickedXen&lt;br&gt;cfDev since dateformat(dateAdd(&quot;yyyy&quot;, -7, now()),&quot;yyyy&quot;);</description>
		<dc:creator>wickedXen</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2003-01-13T03:20:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#633">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#633</link>
		<description>Macromedia Update:&lt;br&gt;&lt;br&gt;The documentation incorrectly states that creating a new cookie using cfcookie on the same page you use cflocation would result in the cookie not being created. The cookie will be created.&lt;br&gt;&lt;br&gt;Stephen M. Gilson&lt;br&gt;Macromedia&lt;br&gt;</description>
		<dc:creator>sgilson102</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2002-08-12T21:26:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#572">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#572</link>
		<description>Update from Macromedia, in response to anandasim, re cfcookie, getting a cokie value: thanks for your comment. We'll update the documentation to include more information.</description>
		<dc:creator>ctina</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2002-07-19T19:19:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#524">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#524</link>
		<description>Update from Macromedia: The CFCOOKIE EXPIRES = &quot;NEVER&quot; option causes the cookie to expire 30 years after the current date.</description>
		<dc:creator>ctina</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2002-07-11T20:14:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#472">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#472</link>
		<description>use the following cookies to force sessions to expire a session @ browser close, instead of letting the cookies persist for the length of the session timeout.&lt;br&gt;&lt;cfcookie name=&quot;CFID&quot; value=&quot;#Session.CFID#&quot;&gt;&lt;br&gt;&lt;cfcookie name=&quot;CFTOKEN&quot; value=&quot;#Session.CFTOKEN#&quot;&gt;&lt;br&gt;</description>
		<dc:creator>h2oman</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2002-06-27T17:26:00</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#465">
		<title>coldfusion/6/CFML_Reference/Tags-pt119.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6/CFML_Reference/Tags-pt119.htm#465</link>
		<description>cfcookie documentation is very sparse about how to retrieve the cookie value.&lt;br&gt;&lt;br&gt;Had to read over and over again and then see that the cookie valie is Cookie.var1&lt;br&gt;&lt;br&gt;</description>
		<dc:creator>anandasim</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2002-06-23T21:38:00</dc:date>
	</item>
	</rdf:RDF>

