Flex - 2032: Stream Error in IE only - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T15:35:05Z http://stackoverflow.com/feeds/question/354936 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/354936/flex-2032-stream-error-in-ie-only 1 Flex - 2032: Stream Error in IE only hughalexb 2008-12-10T02:28:11Z 2009-01-04T09:33:16Z <p>I get a 2032 stream error from Flash in response to POST requests that return "201 Created" in IE (Firefox works fine). Since Flash doesn't provide access to the HTTP status I can't tell that it has actually succeeded. The request is being made with HTTPService.</p> <p>Any suggestions? Has anyone else seen this?</p> <p>Thanks, Alex</p> http://stackoverflow.com/questions/354936/flex-2032-stream-error-in-ie-only/355320#355320 1 Answer by grapefrukt for Flex - 2032: Stream Error in IE only grapefrukt 2008-12-10T07:14:17Z 2008-12-10T07:14:17Z <p>Try using a debug proxy to take a peek at the traffic, I like <a href="http://www.charlesproxy.com/" rel="nofollow">Charles</a>.</p> http://stackoverflow.com/questions/354936/flex-2032-stream-error-in-ie-only/356179#356179 0 Answer by hughalexb for Flex - 2032: Stream Error in IE only hughalexb 2008-12-10T14:14:38Z 2008-12-10T14:14:38Z <p>Installed Charles, thanks, very cool! It confirmed that the server is returning a success code (201) but Flex sends a FaultEvent.</p> http://stackoverflow.com/questions/354936/flex-2032-stream-error-in-ie-only/404448#404448 3 Answer by LG Rains for Flex - 2032: Stream Error in IE only LG Rains 2009-01-01T02:53:47Z 2009-01-01T02:53:47Z <p>I found a way around this on my Flex on Rails application. I was seeing the same problem in IE - my development.log in Rails gave a 201 message, but this caused a fault coming back to Flex. I found a reference in a new book called <em>Flex On Rails</em> by Tony Hillerson and Daniel Wanja, on p. 31. It involves catching the 201 error and changing the header. Here's my ApplicationController file:</p> <pre><code> class ApplicationController &lt; ActionController::Base helper :all # include all helpers, all the time include AuthenticatedSystem before_filter :login_required after_filter :flex_error_handling def flex_error_handling response.headers['Status'] = interpret_status(200) if response.headers['Status'] == interpret_status(422) response.headers['Status'] = interpret_status(200) if response.headers['Status'] == interpret_status(201) end def rescue_action_in_public(exception) render_exception(exception) end def rescue_action_locally(exception) render_exception(exception) end rescue_from ActiveRecord::RecordNotFound, :with =&gt; :render_exception def render_exception(exception) render :text =&gt; "&lt;errors&gt;&lt;error&gt;#{exception}&lt;/error&gt;&lt;/errors&gt;", :status =&gt; 200 end end </code></pre> <p>The action of changing the 422 status message to 200 was part of Hillerman/Wanja's original suggestions to change the 2032 Stream Error into something more friendly, so that invalid record errors are sent back to the Flex UI. </p>