<?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"
	>
<channel>
	<title>Comments on: FileReference.upload doesn&#8217;t support custom headers</title>
	<atom:link href="http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/feed/" rel="self" type="application/rss+xml" />
	<link>http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/</link>
	<description>Confessions of a serial code abuser</description>
	<pubDate>Fri, 21 Nov 2008 00:17:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Alejandro Gonzalez</title>
		<link>http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-69194</link>
		<dc:creator>Alejandro Gonzalez</dc:creator>
		<pubDate>Sun, 26 Oct 2008 16:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-69194</guid>
		<description>&lt;p&gt;This is partly off topic.  I want to use a file reference to upload custom binary data (ie a file built within flash) rather than a physical file from my disk.  Do you know if it can be done?  I'm currently achieving it through a URLLoader object, but it has a huge problem:  There is no upload progress events :/   I read the file reference does dispach this events, so I was wondering....  Any help would be appreciated.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This is partly off topic.  I want to use a file reference to upload custom binary data (ie a file built within flash) rather than a physical file from my disk.  Do you know if it can be done?  I&#8217;m currently achieving it through a URLLoader object, but it has a huge problem:  There is no upload progress events :/   I read the file reference does dispach this events, so I was wondering&#8230;.  Any help would be appreciated.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jackson Gabbard</title>
		<link>http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-63377</link>
		<dc:creator>Jackson Gabbard</dc:creator>
		<pubDate>Fri, 03 Oct 2008 02:27:12 +0000</pubDate>
		<guid isPermaLink="false">http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-63377</guid>
		<description>&lt;p&gt;While this is a little late to be useful, I figured for the web searchers like myself encountering this issue for te first time as well, that custom headers aren't the only way to get additional info to the server along with binary data.&lt;/p&gt;

&lt;p&gt;Cookies are always sent along with requests, so if you setup an ExternalInterface method to update a cookie via JS, you can read the cookie data on the server side.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>While this is a little late to be useful, I figured for the web searchers like myself encountering this issue for te first time as well, that custom headers aren&#8217;t the only way to get additional info to the server along with binary data.</p>

<p>Cookies are always sent along with requests, so if you setup an ExternalInterface method to update a cookie via JS, you can read the cookie data on the server side.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: icao</title>
		<link>http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-49775</link>
		<dc:creator>icao</dc:creator>
		<pubDate>Fri, 06 Jun 2008 11:47:26 +0000</pubDate>
		<guid isPermaLink="false">http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-49775</guid>
		<description>&lt;p&gt;You are right.
This is a real problems. The Filereference.upload doesn't send &lt;b&gt;any &lt;/b&gt;Header to the server if you don't use IE with windows.
All the information here:&lt;/p&gt;

&lt;p&gt;https://bugs.adobe.com/jira/browse/FP-78&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>You are right.
This is a real problems. The Filereference.upload doesn&#8217;t send <b>any </b>Header to the server if you don&#8217;t use IE with windows.
All the information here:</p>

<p><a href="https://bugs.adobe.com/jira/browse/FP-78" rel="nofollow">https://bugs.adobe.com/jira/browse/FP-78</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-41803</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 29 Feb 2008 11:06:49 +0000</pubDate>
		<guid isPermaLink="false">http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-41803</guid>
		<description>&lt;p&gt;jiayin: The above code is ActionScript 3.0 targeting Flash Player 9. According to the latest &lt;a href="http://livedocs.adobe.com/flex/3/langref/flash/net/URLRequest.html#requestHeaders" rel="nofollow"&gt;URLRequest.requestHeaders documentation&lt;/a&gt; still doesn't work with FileReference.upload.&lt;/p&gt;

&lt;p&gt;I've had a look at the &lt;a href="http://code.google.com/p/swfupload/source/browse/swfupload/trunk/FlashDevelop/Flash9/SWFUpload.as" rel="nofollow"&gt;swfupload source code&lt;/a&gt; and I can't see anything in there that adds custom headers to a file upload.request.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>jiayin: The above code is ActionScript 3.0 targeting Flash Player 9. According to the latest <a href="http://livedocs.adobe.com/flex/3/langref/flash/net/URLRequest.html#requestHeaders" rel="nofollow">URLRequest.requestHeaders documentation</a> still doesn&#8217;t work with FileReference.upload.</p>

<p>I&#8217;ve had a look at the <a href="http://code.google.com/p/swfupload/source/browse/swfupload/trunk/FlashDevelop/Flash9/SWFUpload.as" rel="nofollow">swfupload source code</a> and I can&#8217;t see anything in there that adds custom headers to a file upload.request.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: jiayin</title>
		<link>http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-41801</link>
		<dc:creator>jiayin</dc:creator>
		<pubDate>Fri, 29 Feb 2008 10:37:44 +0000</pubDate>
		<guid isPermaLink="false">http://dynamicflash.com/2008/01/filereferenceupload-doesnt-support-custom-headers/#comment-41801</guid>
		<description>&lt;p&gt;flash player 9 support it 
in  swfupload 
you can see the  as source of  swfupload   flash9.0 version&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>flash player 9 support it 
in  swfupload 
you can see the  as source of  swfupload   flash9.0 version</p>]]></content:encoded>
	</item>
</channel>
</rss>
