Error #2032: Stream Error. Posted on February 15, 2007<http://www.judahfrangipane.com/blog/2007/02/15/error-2032-stream-error/> by Judah <http://www.judahfrangipane.com/blog/author/administrator-2/>
Error #2032: Stream Error. *This is the most read post on this site. After reading this please post your comments to help future visitors.* Causes: This error appears to occur when the url or file is blocked or not found by HTTPService call. For me, this error appeared when I had typed in the incorrect url in the HTTPService url property. Specifying the correct URL fixed it. To check this you can check your URL for typos or try to access the URL outside of your app to make sure it is there. Use Service Capture, Charles or Firebug to inspect the response from the server. If the file is not found the server still sends a response back (html or xhtml (xml)). Note: Additional tips and use cases are mentioned in the comments. This error is also caused by a swf trying to access a file across a restricted domain. It’s not going to get the file if it is not allowed to access it. This behavior then generates the error. The fix in is to add a cross-domain policy file to the domain where the page is located at. The cross-domain file must specify that your domain (or any other domains) can access that URL. You can also use a proxy on your server to get the file (I have heard that there are issues with this approach with caching in certain situations). Another cause for this error in certain browsers is caching. Use JabbyPanda’s technique <http://www.jabbypanda.com/blog/?p=16> to prevent caching in IE6 or set the response headers in your server side page to prevent caching. *A note from Mike Chambers:* *If you run into this using URLLoader, listen for the: flash.events.HTTPStatusEvent.HTTP_STATUS* * and in AIR : flash.events.HTTPStatusEvent.HTTP_RESPONSE_STATUS * *It should give you some more information (such as the status code being returned from the server). * ------------------------------ *Please reply in the comments below if this helped you or not. You can also use the Error Lookup Tool<http://judahfrangipane.com/errorsearch/ErrorLookup.html> to look up Flex compiler or runtime errors. more info…<http://www.judahfrangipane.com/blog/?p=110> * -- Arivumani A On Wed, Aug 24, 2011 at 12:44 PM, Flex based developments < [email protected]> wrote: > Hello, > > We deployed our application.For some users as soon as they tried > loading it,it prints on the screen "Error 2032",(stream error) and > nothing is displayed just a blank page. > > Please do suggest. > > Thanks. > > abhilash > > -- > You received this message because you are subscribed to the Google Groups > "Flex India Community" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/flex_india?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.

