<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Java Blog &#187; flex</title>
	<atom:link href="http://javablog.be/category/flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://javablog.be</link>
	<description>Java tutorials and tips</description>
	<pubDate>Sun, 11 Apr 2010 11:00:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Fix your Flex HTTP Error / Stream Error with IE6 / IE7 on HTTPS</title>
		<link>http://javablog.be/flex/fix-your-flex-http-error-stream-error-with-ie6-ie7-on-https/</link>
		<comments>http://javablog.be/flex/fix-your-flex-http-error-stream-error-with-ie6-ie7-on-https/#comments</comments>
		<pubDate>Tue, 16 Dec 2008 21:53:00 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[flex]]></category>

		<category><![CDATA[https]]></category>

		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=81</guid>
		<description><![CDATA[Due to a bug in IE you could receive a Http Error or Stream Error in your Flex application when it's running in https (secure) mode.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/flex/fix-your-flex-http-error-stream-error-with-ie6-ie7-on-https/">Fix your Flex HTTP Error / Stream Error with IE6 / IE7 on HTTPS</a></p>
]]></description>
			<content:encoded><![CDATA[<p style="float: left;margin: 4px;"><script type="text/javascript"><!--
google_ad_client = "pub-3157565936561586";
/* Javablog, Rectangle, ATF */
google_ad_slot = "7293959518";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p><p>When using the Flex HttpService object to access an http resource from within your application, take care to test it under Internet Explorer too. Due to a bug in IE you could receive a Http Error or Stream Error in your Flex application when it&#8217;s running in https (secure) mode.</p>
<p>Normally when your backend responds to the HTTP request, it&#8217;ll use a Cache-control: no-cache, so the browser doesn&#8217;t cache the response in its browser cache. (as the response is normally dynamic and could change anytime).</p>
<p>As Flex is running in the Adobe Flash ActiveX player this however instructs IE to already delete the response, before the ActiveX plugin manages to get the results.</p>
<p>You&#8217;ll need to change your backend to set the following HTTP Response header:</p>
<p><strong>Cache-Control: no-store</strong></p>
<p>This means: &#8220;do not store this response for any longer than necessary to display it&#8221; (more info at <a href="http://blogs.atlassian.com/developer/2007/12/cachecontrol_nostore_considere.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://blogs.atlassian.com/developer/2007/12/cachecontrol_nostore_considere.html');">Atlassian</a>)</p>
<p>Also check out <a href="http://www.robsondesign.com/blog/index.php/2008/08/30/ie-ssl-xml-https-swf-doa/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.robsondesign.com/blog/index.php/2008/08/30/ie-ssl-xml-https-swf-doa/');">Jim Robson&#8217;s blog</a> and <a href="http://faindu.wordpress.com/2008/04/18/ie7-ssl-xml-flex-error-2032-stream-error/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://faindu.wordpress.com/2008/04/18/ie7-ssl-xml-flex-error-2032-stream-error/');">Mark Speck&#8217;s</a> blog for more research regarding this issue.</p>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/flex/fix-your-flex-http-error-stream-error-with-ie6-ie7-on-https/" >Fix your Flex HTTP Error / Stream Error with IE6 / IE7 on HTTPS</a></p>
<p></p>]]></content:encoded>
			<wfw:commentRss>http://javablog.be/flex/fix-your-flex-http-error-stream-error-with-ie6-ie7-on-https/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to install Flex3 builder in RAD7</title>
		<link>http://javablog.be/flex/how-to-install-flex3-builder-in-rad7/</link>
		<comments>http://javablog.be/flex/how-to-install-flex3-builder-in-rad7/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 05:48:01 +0000</pubDate>
		<dc:creator>Wim Bervoets</dc:creator>
		
		<category><![CDATA[flex]]></category>

		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://javablog.be/?p=49</guid>
		<description><![CDATA[The IBM Rational Application Developer 7 (RAD 7) IDE, based on Eclipse 3.3 doesn't work out-of-the-box with Flex Builder 3.<p>This is a post from <a href="http://javablog.be">JavaBlog.be</a></p>
<p><a href="http://javablog.be/flex/how-to-install-flex3-builder-in-rad7/">How to install Flex3 builder in RAD7</a></p>
]]></description>
			<content:encoded><![CDATA[<p>The IBM Rational Application Developer 7 (RAD 7) IDE, based on Eclipse 3.3 doesn&#8217;t work out-of-the-box with Flex Builder 3. This is due to the IBM Java SDK using a different Xerces version then the one Flex Builder needs.</p>
<p>You&#8217;ll likely receive the following error:</p>
<pre><span style="font-family: Arial; font-size: x-small;">java.lang.IllegalAccessError:
org.apache.xerces.util.XMLAttributesImpl$Attribute</span></pre>
<p>Here is an easy guide to get you up and running quickly:</p>
<ol>
<li>Install RAD7</li>
<li>Install Flex Builder 3</li>
<li>At the end of the install, the installer will complain about not being able to automatically setup an Extension Location. Be sure to execute the given instructions manually</li>
<li>Quit RAD7 if running</li>
<li>Edit the eclipse.ini file in <em>c:\Program Files\IBM\SDP70</em> (directory where you installed RAD7)</li>
<li>Add the following line on a new line at the end of the file:</li>
</ol>
<pre>-Xbootclasspath/a:c:\progra~1\adobe\flexbu~1\sdks\3.0.0\lib\xercesImpl.jar<span style="font-size: x-small;"><span style="font-family: Arial;">

Restart RAD7 and open the Flex Development perspective to start developing the next-gen Flex app <img src='http://javablog.be/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </span></span></pre>
<p>This is a post from <a href="http://javablog.be" >JavaBlog.be</a></p>
<p><a href="http://javablog.be/flex/how-to-install-flex3-builder-in-rad7/" >How to install Flex3 builder in RAD7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://javablog.be/flex/how-to-install-flex3-builder-in-rad7/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
