Flex - 2032: Stream Error in IE only - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T15:35:05Zhttp://stackoverflow.com/feeds/question/354936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354936/flex-2032-stream-error-in-ie-only1Flex - 2032: Stream Error in IE onlyhughalexb2008-12-10T02:28:11Z2009-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#3553201Answer by grapefrukt for Flex - 2032: Stream Error in IE onlygrapefrukt2008-12-10T07:14:17Z2008-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#3561790Answer by hughalexb for Flex - 2032: Stream Error in IE onlyhughalexb2008-12-10T14:14:38Z2008-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#4044483Answer by LG Rains for Flex - 2032: Stream Error in IE onlyLG Rains2009-01-01T02:53:47Z2009-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 < 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 => :render_exception
def render_exception(exception)
render :text => "<errors><error>#{exception}</error></errors>", :status => 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>