<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Cookies and Actionscript</title>
	<atom:link href="http://codedump.tsdme.nl/actionscript/cookies-and-actionscript/feed" rel="self" type="application/rss+xml" />
	<link>http://codedump.tsdme.nl/actionscript/cookies-and-actionscript</link>
	<description>A little blog where I write about my experiences while coding.</description>
	<lastBuildDate>Thu, 08 Jul 2010 04:02:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: HoboZero</title>
		<link>http://codedump.tsdme.nl/actionscript/cookies-and-actionscript/comment-page-1#comment-57</link>
		<dc:creator>HoboZero</dc:creator>
		<pubDate>Thu, 08 Jul 2010 04:02:19 +0000</pubDate>
		<guid isPermaLink="false">http://codedump.tsdme.nl/?p=4#comment-57</guid>
		<description>I just thought I&#039;d add that it appears that the authentication cookies created in Internet Explorer are used in all browsers.

for example, first trip to page using Firefox will not save a cookie.  The second trip will fail since there is no cookie available.  If you then go using IE, the next request in Firefox will work because it uses the IE cookie.

I&#039;m currently trying to resolve how to keep cookies browser specific.</description>
		<content:encoded><![CDATA[<p>I just thought I&#8217;d add that it appears that the authentication cookies created in Internet Explorer are used in all browsers.</p>
<p>for example, first trip to page using Firefox will not save a cookie.  The second trip will fail since there is no cookie available.  If you then go using IE, the next request in Firefox will work because it uses the IE cookie.</p>
<p>I&#8217;m currently trying to resolve how to keep cookies browser specific.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://codedump.tsdme.nl/actionscript/cookies-and-actionscript/comment-page-1#comment-8</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sat, 05 Sep 2009 05:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://codedump.tsdme.nl/?p=4#comment-8</guid>
		<description>Yes the URLLoader stores cookies and hence stores cookies needed to maintain a logged in session.

You can turn that functionality off if you want the cookie data in the response headers.

var myLoader = new air.URLLoader();
var myRequest = new air.URLRequest(url);
myRequest.manageCookies = false;

You will need to do this is you want to get a cookie value manually from the headers.

In a air.HTTPStatusEvent.HTTP_RESPONSE_STATUS event loop through the event.responseHeaders and look for event.responseHeaders[i].name == &#039;Set-Cookie&#039; to get the headers.

Hope this helps someone.</description>
		<content:encoded><![CDATA[<p>Yes the URLLoader stores cookies and hence stores cookies needed to maintain a logged in session.</p>
<p>You can turn that functionality off if you want the cookie data in the response headers.</p>
<p>var myLoader = new air.URLLoader();<br />
var myRequest = new air.URLRequest(url);<br />
myRequest.manageCookies = false;</p>
<p>You will need to do this is you want to get a cookie value manually from the headers.</p>
<p>In a air.HTTPStatusEvent.HTTP_RESPONSE_STATUS event loop through the event.responseHeaders and look for event.responseHeaders[i].name == &#8216;Set-Cookie&#8217; to get the headers.</p>
<p>Hope this helps someone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ezrad Lionel</title>
		<link>http://codedump.tsdme.nl/actionscript/cookies-and-actionscript/comment-page-1#comment-5</link>
		<dc:creator>Ezrad Lionel</dc:creator>
		<pubDate>Mon, 25 May 2009 05:48:08 +0000</pubDate>
		<guid isPermaLink="false">http://codedump.tsdme.nl/?p=4#comment-5</guid>
		<description>Pretty cool stuff. What are you studying at Uni? I fear my life will be gone once I get into Actionscript. Yeah, we have the same name, they actually added a d because the priest said Ezrad is androgynous. I have a cousin named Ezrad too. sorry for freaking out I dont meet too many people with that name, in fact, none.

good day</description>
		<content:encoded><![CDATA[<p>Pretty cool stuff. What are you studying at Uni? I fear my life will be gone once I get into Actionscript. Yeah, we have the same name, they actually added a d because the priest said Ezrad is androgynous. I have a cousin named Ezrad too. sorry for freaking out I dont meet too many people with that name, in fact, none.</p>
<p>good day</p>
]]></content:encoded>
	</item>
</channel>
</rss>
