Regarding Stream error #2032

Hi All,
Iam getting streamerror #2032 frequently in my Flex web application .
For your Reference we have used RSL link type in my Flex application project to load common class libraries(.swc) file.
Please reply me with an solution
Regards,
karthik

Try the forum for Flash Player. This is the forum for Acrobat Forms.

Similar Messages

  • Streaming Error #2032 in Internet Explorer

    Hi,
    I have a probem with running my dashboards in Internet Explorer.
    When I am running several dashboards on one PC, I will start getting Error #2032 on the dashboards.
    If I run the dashboards in Mozilla Firefox, I don't get any #2032 errors.
    In my dashboards there are alot of web service connections, but the web server is running on an IIS 6.0, so the web server can handle quite a big amount of web services.
    Does anyone have any experience with this kind of problem?
    I have been thinking if it is Internet Explorers implementation of Flash that is causing this problem?
    All comments are very much appreciated.
    Best regards,
    Ole

    Sorry for the sllllooowww reply but we have been playing ping pong with BOBJ Support on this...with no success...
    The customer who is experiencing random 'Error #2032' on .swf files refreshed while logged on inside or outside the firewall (contrary to my original post). This is not restricted to any specific .swf or Xcelsius component.
    -The is an https:// environment
    -The crossdomain is as follows:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-http-request-headers-from domain="" headers="" secure="false" />
    <allow-access-from domain="*" secure="false" />
    </cross-domain-policy>
    -The Adobe Global Security Settings at
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html
    are set to "Always Allow"
    -SAP/BOBJ Support had us use Fiddler and other tools to get a trace, but none of them have shown anything of value. Maybe we are using such tools incorrectly?
    Has anyone been able to eradicate this seemingly Flash/Network issue with confidence? Any other tasks we can try or troubleshooting tips.

  • Air HTTPService Stream Error #2032

    Hi there,
    I am currently creating an Air app which loads 1 or more xml on creation complete.
    So what it does is, it searches for xml files in a given folder by looping over the contents in this folder, if it's an xml then it loads it using HTTPService, it then retrieves the xml data then moves the xml file to another folder, this repeats until all xml files have been loaded.
    This is all working fine except sometimes not all xml files get loaded and I encounter the #2032 error, is this because I am loading multiple xml files one after the other in a loop?
    This does not seem to happen if there is only one xml but two or more starts to get a bit temperamental.
    Any help would be greatly appreciated, thank you,
    Fuyuko

    Hi there, thanks for your reply.  ok here is the code, when I instantiated the HTTPService object at the top as a private var it works 100% BUT now for some reason it tries to open the same xml three times for all three files! the first time it works, but the second and third time it errors(obviously!).
    The code in red is the older code which I thought would be the way to do this but almost 50% of the time one of the files does not get loaded and instead gives me the dreaded #2032 error.....
                private var fileName:String;
                private var dir:File = new File("file:///C:/wamp/www/FileWatcher/Data");
                private var processedLocation:File = new File("file:///C:/wamp/www/FileWatcher/Data/processed");
                private var service:HTTPService = new HTTPService();
                private function init():void
                    //get direcotry listing inside Data
                    dir.getDirectoryListingAsync();
                    //call function to retrieve the names of each file
                    dir.addEventListener(FileListEvent.DIRECTORY_LISTING, getFileName);
                private function getFileName(event:FileListEvent):void
                    for each(var item:File in event.files)
                        //trace(item.name);
                         if(item.name!="processed" && item.name!="log.txt")
                            //set variable to the item name
                            fileName = item.name;
                            //call function to open this file and load the xml contents
                             getData(fileName);
                private function getData(fileName:String):void
                   var service:HTTPService = new HTTPService();
                    var urlString:String = "http://localhost/FileWatcher/Data/"+fileName;
                    service.resultFormat="e4x";
                    service.url = urlString;
                    service.addEventListener(ResultEvent.RESULT, function(e:ResultEvent):void{resultHandler(e, fileName)});
                    service.addEventListener(FaultEvent.FAULT, function(e:FaultEvent):void{faultHandler(e, fileName)});
                    service.send();    
                 private function faultHandler(evt:FaultEvent, fileName:String):void
                    var myDate:Date = new Date();
                    var formattedDate:String = dateFormatter.format(myDate);
                    var dateString:String = formattedDate+myDate.milliseconds;
                    var message:String = "Fault occurred at "+dateString+" The origin of the fault is "+evt.message;
                    trace("**********************ERROR**********************");
                    trace("Loading data for "+fileName+" was unsuccessful at "+dateString+"\r\n");
                private function resultHandler(evt:ResultEvent, fileName:String):void
                    //trace("result is "+evt.result.toString());
                    //write data in to the database here
                    //get directory listings inside Data
                    var directory:File = new File("file:///C:/wamp/www/FileWatcher/Data");
                    directory.getDirectoryListingAsync();
                    //call function to move each file to the new location

  • Android AIR App Random Error #2032: Stream Error (HTTPStatusEvent = 0)

    Hello
    I am investigating an issue with failed requests and it's been difficult to narrow it down. When I put the URL into a browser I get a valid / expected response. However when I try to access the same URL using Actionscript 3 on my Android Devices (Nexus S and Xoom), I get stream error #2032 at random.
    I am using URLRequest with a custom RequestListener class:
    var loader:URLLoader = new URLLoader();                 
    if(action == "zip") loader.dataFormat = URLLoaderDataFormat.BINARY;
    var listener:RequestListener = new RequestListener(action, loader, endFunction, extra);
    loader.addEventListener(Event.COMPLETE, listener.requestSuccessful);
    loader.addEventListener(IOErrorEvent.IO_ERROR, listener.requestFailed);
    loader.addEventListener(HTTPStatusEvent.HTTP_STATUS, onHTTPStatusChange);
    var req:URLRequest = new URLRequest(Global.apiURL);
    req.method = URLRequestMethod.POST;
    req.data = new URLVariables(paramString);
    loader.load(req);
    return loader;
    Note that it works on one of my routers but not the access point:
    onHTTPStatusChange: 0
    requestFailed: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: { ... }" errorID=2032]
    Since it works on one router but not the other, I can't say that it's an issue with the app, phone, or our request URL.
    Note that I am using SSL / https.
    Is it a timeout issue?? This is really frustrating.
    Thanks.

    @zhenya1919 - since you're currently going through this, could you please open a new bug report on this over at https://bugbase.adobe.com?  When adding the bug, please include some sample code or a sample application so we can quickly test this out internally.  If you'd like to keep this private, feel free to email the attachment to me directly ([email protected]). 
    Once added, please post back with the URL so that others effected can add their comments and votes.
    Thanks,
    Chris

  • AS3 Stream Error

    I'm sending lots of variables to a PHP file to enter into a
    database, however, I keep getting a Stream Error #2032. After
    looking it up in the Appendixes, and finding "Stream Error.", I'm
    right where I was. It is a very long URL with about 65 variables..
    Is there some sort of limit?

    is your url correct? (test outside of flash.)
    is there a security violation (and you need a cross-domain
    policy file)?
    are you using GET or POST?

  • Problem accessing web service, error 2032 Stream Error

    I'm building a small flex app hat uses two web services
    provided by the same coldfusion CFC.
    I've verified that I can successfully access the web services
    via HTTP, and one of the web services actually does work when
    called. Both return structures that contain a string var, a numeric
    var, and one or more query vars.
    Here is my web service declaration:
    quote:
    <mx:WebService id="ws"
    wsdl="https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc?wsdl"
    useProxy="false">
    <mx:operation name="queryDB" result="queryDBResult()"
    fault="queryDBFault(event)">
    <mx:request>
    <RUNDATE>{cboRunDate.selectedItem.XDATE}</RUNDATE>
    <ENTITYID>{txtEntityID.text}</ENTITYID>
    <LASTNAME>{txtLastName.text}</LASTNAME>
    <FIRSTNAME>{txtFirstName.text}</FIRSTNAME>
    <MINITIAL>{txtMiddleInitial.text}</MINITIAL>
    <PRFSCHCD>{cboPreferredSchool.selectedItem.TABLKEY}</PRFSCHCD>
    <PRRECTYP>{cboRecordType.selectedItem.TABLKEY}</PRRECTYP>
    <PRFCLASS>{txtPreferredClass.text}</PRFCLASS>
    </mx:request>
    </mx:operation>
    <mx:operation name="getListData"
    result="getListDataResult()" fault="getListDataFault()"/>
    </mx:WebService>
    Sorry if the formatting sucks, I don't know how to post
    "code" here.
    Anyway, the getListData() method works fine and populates my
    list boxes. But when I call the queryDB() method, I get the
    following fault event:
    quote:
    [FaultEvent fault=[RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent
    type="ioError" bubbles=false cancelable=false eventPhase=2
    text="Error #2032: Stream Error. URL:
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc"].
    URL:
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc"]
    messageId="1E553B99-DF28-ED72-62B8-B84AA3919F9A" type="fault"
    bubbles=false cancelable=true eventPhase=2]
    I've looked all over the place and I can't seem to find what
    this error means. I've tried all kinds of different ways of doing
    things. Right now I'm browsing the flex app via a file URL (C:\...)
    but I tried putting it up on the server too and that didn't work
    either.
    The method call *DOES* work when called via HTTP... ie
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc?method=queryDB&RUND ATE=2006-05-19&FIRSTNAME=&LASTNAME=SMITH&MINITIAL=&PRFSCHCD=&PRRECTYP=AL&PRFCLASS=&ENTITYI D=
    (You have to be logged in for that to work so you'll just
    have to trust me, it returns no records if you're not logged into
    the web site already).
    I'm totally stressing out about this because I've essentially
    spent the entire day since 8am trying to solve this. The
    application should've taken 15 minutes total.
    HELP!
    Thanks for any suggestions y'all have.
    Rick

    It means your output was not formed correctly and could not
    be parsed. set up a server side script or something to check that
    the output is indeed what you think it should be, 99% of the time i
    get thie error its due to malformed output from my webservice or
    db. Also try making an xml model of your target data to test the
    application internaly, look up model in the docs, it easy to use
    and if the model works then you know the data is faulty and you
    need to check your output and queries.

  • #2032 Stream Error when downloading .air file for update

    Hi guys,
    I have made a very simple self update air application. When
    the .air file to download for updating is on a localhost server
    everything works fine, however when the .air file is on a remote
    server I got a #2032 stream error when trying to download the .air
    file. (I tried to download the file using IE or Firefox and I get a
    404 error ; btw I am absolutely sure of the .air file URL )
    Does this happen because the .air file has been generated
    with my trial version of Adobe Air ?
    Thanks for your help.
    Olivier

    Thank you for your answer Oliver.
    I'm absolutely sure of the URL. I set the permissions on the
    remote web server to browse the directory with my explorer, I can
    see the .air file but when I click on that file I get that 404
    error. (I hit the refresh button of my browser to be sure to have
    the correct files list). Btw something interesting to notice is
    that when I rename the .air file to .zip I can download the file.
    I have tried with another remote server and it works. There
    may be some misconfiguration somewhere with the first server I
    tried.

  • Error #2032: Stream Error

    Hi,
    I have recently purchased the FlexBuilder2 and am developing
    an ASP.NET web application application which uses a flex
    application.
    My Flex application is using XML as the data source. The XML
    file is supposed to be loaded from a web location ("https"). The
    Flex application loads all the data correctly when I launch it in
    Firefox, but it gives the following error when I try to load it in
    IE6:
    event = flash.events.IOErrorEvent (@4e835b1)
    bubbles = false
    cancelable = false
    currentTarget = flash.net.URLLoader (@4b268b1)
    eventPhase = 2
    target = flash.net.URLLoader (@4b268b1)
    text = "Error #2032: Stream Error. URL:
    https://xyz.com/flex_data/standardfrontier.xml"
    type = "ioError"
    I am using FlexBuilder2 IDE to develop and run the Flex
    application.
    I am not sure why is this happening. I have tried setting the
    content expiration property in my webserver (IIS) which holds the
    XML file, to expire immidiately, but still no good.
    It works properly with FireFox, but, I need this application
    to load properly in IE6 as well.
    Any help will be highly appreciated.
    Thanks in Anticipation,
    Rahul

    Hi Rahul,
    I would recommend to use google before asking a question.
    This is an infamous #2032 error. But it seems that your
    problem has a solution.
    Read this:
    http://www.jabbypanda.com/blog/?p=16
    http://www.judahfrangipane.com/blog/?p=87
    http://kb.adobe.com/selfservice/viewContent.do?externalId=fdc7b5c&sliceId=2
    http://www.blog.lessrain.com/?p=276
    etc

  • Flex IO error# 2032 when using IE7 for parallel https calls across two servers

    Hi,
    Weeks back I faced a wierd issue in the behaviour of flashplayer running on IE7 which is invoking parallel https calls. I have two SSL enabled servers one is listening on port 443 and the other is listening on port 8443 but both running in the same domain. I developed a flex client (using httpservice class) which sends parallel https requests to these two servers. When the number of parallel requests increases say more than 5 requests to each server, the fault handler was encountered with the error message:
    [RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: https://servlet"]. URL: https://servlet"]
    I used some http tracer tools to check if the request jumps out of the browser but that didnt happen. I am 100% sure that I am using the correct url. I was totally helpless . This worked without any issues in IE8 or Chrome or Firefox. This made me think about increasing the number of concurrent connections for IE7 by modifying the windows registry. But still no difference in the behaviour.
    After breaking my head for a long days, I got one solution which would work. This issue is happening only if we are sending https requests to different ports in the same domain. So rather than moving one among the two servers to a new domain, I got a new DNS name for the same destination. So presently I got two DNS names pointing to the same machine in which both the servers are mounted.
    After this it really worked cool!!! Now that I am using a separate DNS name for the server listening on port 8443 and the old DNS name is used to hit the server listening on 443. And I am happy that its working fine without any issues .
    But can anyone tell me if this is really an IE7 issue or do we have anyother solution to fix this.
    Please share ur thoughts..

    Hi,
    I am building a mobile employee directory and for that I am using Flash Builder 4.6/AIR 3.1.0. I am using RESTful web service to get XML results and to display on my mobile application. I am getting the same below error when accessing the webservice from mobile app (Android - Galaxy Tab 7 inch).
    Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error # 2032"] URL: http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co">http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlabhttp://adfdevp.alshaya.com:7013/RESTEmployeeDetails-http://adfdevp.als haya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlabEmployeeDetails-context-root/jersey/restlab
    The same code is working in Flash Builder 4.6. I have checked Network Monitor to "Disabled" before deploying to mobile. What am i doing wrong here? I am pasting my code below-
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView" xmlns:dao="dao.*"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <fx:Script>
       <![CDATA[
        import mx.collections.ArrayCollection;
        import mx.collections.IList;
        import mx.collections.XMLListCollection;
        import mx.events.FlexEvent;
        import mx.rpc.events.FaultEvent;
        import mx.rpc.events.ResultEvent;
        import mx.rpc.xml.SimpleXMLDecoder;
        import mx.utils.ArrayUtil;
        import valueObjects.EmployeeDetail;
        [Bindable]
        private var myXml:XML;
        [Bindable]
        public var resultCollection:IList;
        public function handleXml(event:ResultEvent):void
         var xmlListCollection:XMLListCollection = new XMLListCollection(event.result.children());
         var xmlListCollectionValues:XMLListCollection = new XMLListCollection(event.result.emp.children());
         var resultArray:Array = xmlListCollection.toArray();
         var resultArrayValues:Array = xmlListCollectionValues.toArray();
         var objEmployeeDetails:EmployeeDetail;
         var resultCollection:ArrayCollection = new ArrayCollection();
         var j:int = 0;
         for(var i:int=0;i<resultArray.length;i++){
          objEmployeeDetails = new EmployeeDetail();
          objEmployeeDetails.brand = resultArrayValues[j];
          objEmployeeDetails.division = resultArrayValues[j+1];
          objEmployeeDetails.email = resultArrayValues[j+2];
          objEmployeeDetails.employee_name = resultArrayValues[j+3];
          objEmployeeDetails.employee_number = resultArrayValues[j+4];
          objEmployeeDetails.grade = resultArrayValues[j+5];
          objEmployeeDetails.mobile = resultArrayValues[j+6];
          objEmployeeDetails.position = resultArrayValues[j+7];
          j = j + 8;
          resultCollection.addItem(objEmployeeDetails);
         list.dataProvider = resultCollection;
         //return resultCollection;
        public function handleFault(event:FaultEvent):void
         //Alert.show(event.fault.faultDetail, "Error");             
        protected function sesrchEmployee():void
         xmlRpc.send();
       ]]>
    </fx:Script>
    <fx:Declarations>
       <dao:EmployeeDAO id="srv"/>
       <mx:HTTPService id="xmlRpc"
           url="http://adfdevp.alshaya.com:7013/RESTEmployeeDetails-EmployeeDetails-co ntext-root/jersey/restlab"
           result="handleXml(event)"
           fault="handleFault(event)"
           resultFormat="e4x" showBusyCursor="true">
        <mx:request xmlns="">
         <data>{key.text}</data>
         <data>{key1.text}</data>
        </mx:request>
       </mx:HTTPService>
    </fx:Declarations>
    <s:navigationContent/>
    <s:titleContent>
       <s:VGroup width="100%">
       <s:HGroup width="100%">
        <s:Label top="40" paddingTop="10" paddingRight="13" height="29" text="Employee Name:"/>
        <s:TextInput id="key" width="559"/>
       </s:HGroup>
       <s:HGroup width="100%">
        <s:Label height="30" paddingTop="10" text="Employee Number:"/>
        <s:TextInput id="key1" width="100%"/>
       </s:HGroup>
       </s:VGroup>
    </s:titleContent>
    <s:actionContent>
       <s:Button icon="@Embed('assets/search.png')" click="sesrchEmployee()"/> 
    </s:actionContent>
    <s:List id="list" top="0" bottom="0" left="0" right="0" 
        change="navigator.pushView(EmployeeDetails, list.selectedItem)">
       <s:itemRenderer>
        <fx:Component>
         <s:IconItemRenderer label="{data.employee_name}"
              messageField="position">
         </s:IconItemRenderer>
        </fx:Component>
       </s:itemRenderer>
    </s:List>
    </s:View>
    Please help me to resolve this issue as soon as possible. Appreciate your quick response in this regard.
    Thanks,
    Murtaza Ghodawala
    Mobile: +965 97180549
    [email protected]

  • Error 2032 when previewing report after apgrading to SP3

    Dear experts,
    I have a report that previously worked fine in 2008 SP1FP3 but now errors after upgrading to 2008 SP3. The report connects to an external data source using an XML Data refresh button sending some data to a URL and then loading a data table received back. The error message when previewing the report is as follows:
    Cannot access external data
    An error has occurred.
    For more information , contact the file creator or your system administrator.
    Error: Error no 2032
    Connection Type: XML Data
    Any advice will be appreciated...

    Hi,
    the error 2032 is a general stream error. Did you mark your XML file as trusted in the adobe settings?:
    http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html
    Is the XML file on other domain than yours? Then you will need a crossdomain policy file on the root of that server:
    http://ryangoodman.net/blog/index.php/2008/04/25/xcelsius_2008_cross_domain_policy_change
    Regards
    Victor

  • Network Stream Error -314340 due to buffer size on the writer endpoint

    Hello everyone,
    I just wanted to share a somewhat odd experience we had with the network stream VIs.  We found this problem in LV2014 but aren't aware if it is new or not.  I searched for a while on the network stream endpoint creation error -314340 and couldn't come up with any useful links to our problem.  The good news is that we have fixed our problem but I wanted to explain it a little more in case anyone else has a similar problem.
    The specific network stream error -314340 should seemingly occur if you are attempting to connect to a network stream endpoint that is already connected to another endpoint or in which the URL points to a different endpoint than the one trying to connect. 
    We ran into this issue on attempting to connect to a remote PXI chassis (PXIe-8135) running LabVIEW real-time from an HMI machine, both of which have three NICs and access different networks.  We have a class that wraps the network stream VIs and we have deployed this class across four machines (Windows and RT) to establish over 30 network streams between these machines.  The class can distinguish between messaging streams that handle clusters of control and status information and also data streams that contain a cluster with a timestamp and 24 I16s.  It was on the data network streams that we ran into the issue. 
    The symptoms of the problem were that we if would attempt to use the HMI computer with a reader endpoint specifying the URL of the writer endpoint on the real-time PXI, the reader endpoint would return with an error of -314340, indicating the writer endpoint was pointing to a third location.  Leaving the URL blank on the writer endpoint blank and running in real-time interactive or startup VI made no difference.   However, the writer endpoint would return without error and eventually catch a remote endpoint destroyed.  To make things more interesting, if you specified the URL on the writer endpoint instead of the reader endpoint, the connection would be made as expected. 
    Ultimately through experimenting with it, we found that the buffer size of the create writer endpoint  for the data stream was causing the problem and that we had fat fingered the constants for this buffer size.   Also, pre-allocating or allocating the buffer on the fly made no difference.  We imagine that it may be due to the fact we are using a complex data type with a cluster with an array inside of it and it can be difficult to allocate a buffer for this data type.  We guess that the issue may be that by the reader endpoint establishing the connection to a writer with a large buffer size specified, the writer endpoint ultimately times out somewhere in the handshaking routine that is hidden below the surface. 
    I just wanted to post this so others would have a reference if they run into a similar situation and again for reference we found this in LV2014 but are not aware if it is a problem in earlier versions.
    Thanks,
    Curtiss

    Hi Curtiss!
    Thank you for your post!  Would it be possible for you to add some steps that others can use to reproduce/resolve the issue?
    Regards,
    Kelly B.
    Applications Engineering
    National Instruments

  • Error 2032 loading xml from swf

    Hello everyone.
    I have a php site (based on Joomla! CMS). In one php page, there is a <object> element wich loads the Adobe Flex 1.5 swf file that I have developed (Slideshow.swf). This swf file is a slideshow that loads a xml file using a httpservice. The xml file contains the urls to the images to be shown. The error occurs when thw swf file tries to load the xml file, but not always.
    - SITUATION 1: Visiting http://localhost/Slideshow.html or http://localhost/Slideshow.swf
      The html and the swf are the files generated by Adobe Flex builder.
      Navigators: IE 8, Mozila Firefox 3.5.5
       --> Yes, it works!!
    - SITUATION 2: Visiting http://mydomaing.com/folder1/folder2/Slideshow.html or http://mydomaing.com/folder1/folder2/Slideshow.swf
      The html and the swf are the files generated by Adobe Flex builder.
      Navigators:
         IE 8 --> Yes, it works!!
         Mozila Firefox 3.5.5   --> I don't get Error 2032, but the images can't be found. This is another problem...
    - SITUATION 3: Visiting http://mydomain.com
      Navigators: IE 8, Mozila Firefox 3.5.5
      --> No, it doesnt' work!! I get Error 2032!!
      The whole page loads. The swf loads, but when the swf tries to load the xml file, the fault event is throwed. Then I use an Alert.show. I'll give you as much information as I can:
    ERROR MESSAGE (FOR SITUATION 3)
    Message: faultCode:Server.Error.Request faultString:'HTTP request error' faultDetail:'Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032"]. URL: ./slideshowGallery.xml'
    Name: Error
    Root cause: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032"]
    Error ID: 0
    Fault code: Server.Error.Request
    Fault detail: Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032"]. URL: ./slideshowGallery.xml
    Fault string: HTTP request error
    FLEX CODE
    <mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init();"
    The init method:
    private  
    function init():void{ 
    httpService.send();
    The httpservice element:
    <mx:HTTPServiceid="httpService"url="
    ./slideshowGallery.xml"resultFormat="
    e4x"fault="httpService_fault(event);"
    result="httpService_result(event)"
    />
    I think the handlers don't care. In SITUATION 3, the send() invocation always triggers the fault handler.
    The xml file is in the same folder as the swf file (I use ./slideshowGallery.xml for the url field of the httpservice element).
    This is the html code generated by the php page of my site:
    <div id="ol-flashheader">
    <object type="application/x-shockwave-flash" data="/templates/mx_joofree2/images/header.swf" width="700" height="240">
    <param name="wmode" value="transparent" />
    <param name="movie" value="/templates/mx_joofree2/images/header.swf" />
    </object>
    </div>
    Note: header.swf is my Slideshow.swf renamed.
    Ah, I have also a cross-domain policy file: http://mydomain.com/crossdomain.xml. And the following is curious. The content is:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy
    SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-access-from domain=www.mydomain.com />
      <allow-access-from domain="mydomain.com" />
      <allow-access-from domain="*.mydomain.com" />
    </cross-domain-policy>
    But when i visit http://mydomain.com/crossdomain.xml with IE 8 what i see is:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy
    SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-access-from domain=www.mydomain.com secure="true"/>
      <allow-access-from domain="mydomain.com" secure="true"/>
      <allow-access-from domain="*.mydomain.com" secure="true"/>
    </cross-domain-policy>
    But, when i visit that url with Firefox... correct, It doesn't adds the secure="true" attributes!! jajaja
    Please, I need some advise to solve this problem.
    Thank you very much.
    When I visit the web page (www.mydomain.com) and the swf tries to load

    I haven't found the solution yet, but i can give more info:
    I have modified the crossdomain.xml file to set secure="false". This way, when you view it with Internet Explorer, you can see secure="false" instead of secure="true". But this didn't solve the problem.
    I have read somewhere that avoiding Internet Explorer to cache files, could help. So, I have added the next line to the <header> section of the php page that contains the <object> tag that loads sthe swf file:
    <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
    This didn't solve the problem.
    Regards.

  • B2B-51566 Description: Parse stream error with RosettaNet 1.1

    Hi
    Need help with the following error message
    B2B-51566 Parse stream error
    We have a trading partner set up to use RosettaNet 1.1 protocol and we are getting 51566 error. We are NOT experiencing this error with a trading partner who is in RosettaNet 2.0
    we are currently patched up to 11.1.1.5
    One thing I notice is when i go to the message and open the packed message i get this "Cannot display Packed Message in binary format."
    Here is the payload
    XMessage-ID: <[email protected]d.e2open.com>
    MIME-Version: 1.0
    Content-Type: multipart/related;
         boundary="----=_Part_176_29725195.1331307008851";
         type="Application/x-RosettaNet"
    Content-Description: This is the RosettaNet Business Message
    Content-ID: "-15059242:135f6ea5e3c:-62b9"
    ------=_Part_176_29725195.1331307008851
    Content-Type: Application/xml; rnsubtype=preamble-header; name=Preamble
    Content-Transfer-Encoding: binary
    Content-Disposition: attachment; filename=Preamble
    Content-ID: <[email protected]>
    Content-Description: This is the Preamble Header part of the Business Message
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE Preamble SYSTEM "PreamblePartMessageGuideline.dtd">
    <Preamble>
    <DateTimeStamp>20120309T153008.852Z</DateTimeStamp>
    <GlobalAdministeringAuthorityCode>RosettaNet</GlobalAdministeringAuthorityCode>
    <GlobalUsageCode>Production</GlobalUsageCode>
    <VersionIdentifier>1.1</VersionIdentifier>
    </Preamble>
    ------=_Part_176_29725195.1331307008851
    Content-Type: Application/xml; rnsubtype=service-header; name=ServiceHeader
    Content-Transfer-Encoding: binary
    Content-Disposition: attachment; filename=ServiceHeader
    Content-ID: <[email protected]>
    Content-Description: This is the Service Header part of the Business Message
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ServiceHeader SYSTEM "ServiceHeaderPartMessageGuideline.dtd">
    <ServiceHeader>
    <ProcessControl>
    <ProcessIdentity>
    <description>
    <FreeFormText>NotNull</FreeFormText>
    </description>
    <GlobalProcessCode>Request Purchase Order</GlobalProcessCode>
    <GlobalProcessIndicatorCode>3A4</GlobalProcessIndicatorCode>
    <initiatingPartner>
    <GlobalBusinessIdentifier>007710825</GlobalBusinessIdentifier>
    </initiatingPartner>
    <InstanceIdentifier>PIPC0A85CB8135F814CB4200000EAFE56F0</InstanceIdentifier>
    <VersionIdentifier>V02.00</VersionIdentifier>
    </ProcessIdentity>
    <ServiceRoute>
    <fromService>
    <BusinessServiceDescription>
    <GlobalBusinessServiceCode>Seller Service</GlobalBusinessServiceCode>
    </BusinessServiceDescription>
    </fromService>
    <toService>
    <BusinessServiceDescription>
    <GlobalBusinessServiceCode>Buyer Service</GlobalBusinessServiceCode>
    </BusinessServiceDescription>
    </toService>
    </ServiceRoute>
    <TransactionControl>
    <AttemptCount>1</AttemptCount>
    <PartnerRoleRoute>
    <fromRole>
    <PartnerRoleDescription>
    <GlobalPartnerRoleClassificationCode>Seller</GlobalPartnerRoleClassificationCode>
    </PartnerRoleDescription>
    </fromRole>
    <toRole>
    <PartnerRoleDescription>
    <GlobalPartnerRoleClassificationCode>Buyer</GlobalPartnerRoleClassificationCode>
    </PartnerRoleDescription>
    </toRole>
    </PartnerRoleRoute>
    <TransactionIdentity>
    <GlobalTransactionCode>Request Purchase Order</GlobalTransactionCode>
    <InstanceIdentifier>TIC0A85CB8135F814CB4200000EAFE5700</InstanceIdentifier>
    </TransactionIdentity>
    <SignalControl>
    <inResponseTo>
    <ActionIdentity>
    <GlobalBusinessActionCode>Purchase Order Request Action</GlobalBusinessActionCode>
    <InstanceIdentifier>C0A85CB8135F814C33C00000EAFE5670</InstanceIdentifier>
    </ActionIdentity>
    </inResponseTo>
    <InstanceIdentifier>20120309T153008.882Z</InstanceIdentifier>
    <PartnerRoute>
    <fromPartner>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>364132837</GlobalBusinessIdentifier>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </fromPartner>
    <toPartner>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>007710825</GlobalBusinessIdentifier>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </toPartner>
    </PartnerRoute>
    <SignalIdentity>
    <GlobalBusinessSignalCode>Receipt Acknowledge</GlobalBusinessSignalCode>
    <VersionIdentifier>1.1</VersionIdentifier>
    </SignalIdentity>
    </SignalControl>
    </TransactionControl>
    </ProcessControl>
    </ServiceHeader>
    ------=_Part_176_29725195.1331307008851
    Content-Type: Application/xml; rnsubtype=service-content;
         name=ReceiptAcknowledgement
    Content-Transfer-Encoding: binary
    Content-Disposition: attachment; filename=ReceiptAcknowledgement
    Content-ID: <[email protected]>
    Content-Description: This is the Service Content part of the Business Message
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ReceiptAcknowledgement SYSTEM "ReceiptAcknowledgementMessageGuideline.dtd">
    <ReceiptAcknowledgement>
    <fromRole>
    <PartnerRoleDescription>
    <ContactInformation>
    <contactName>
    <FreeFormText>E2open Support</FreeFormText>
    </contactName>
    <EmailAddress>[email protected]</EmailAddress>
    <telephoneNumber>
    <CommunicationsNumber>650-381-6000</CommunicationsNumber>
    </telephoneNumber>
    </ContactInformation>
    <GlobalPartnerRoleClassificationCode>Seller</GlobalPartnerRoleClassificationCode>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>364132837</GlobalBusinessIdentifier>
    <GlobalSupplyChainCode>Information Technology</GlobalSupplyChainCode>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </PartnerRoleDescription>
    </fromRole>
    <receivedDocumentDateTime>
    <DateTimeStamp>20120309T153008.907Z</DateTimeStamp>
    </receivedDocumentDateTime>
    <receivedDocumentIdentifier>
    <ProprietaryDocumentIdentifier>337719</ProprietaryDocumentIdentifier>
    </receivedDocumentIdentifier>
    <thisMessageDateTime>
    <DateTimeStamp>20120309T153008.904Z</DateTimeStamp>
    </thisMessageDateTime>
    <thisMessageIdentifier>
    <ProprietaryMessageIdentifier>20120309T153008.905Z</ProprietaryMessageIdentifier>
    </thisMessageIdentifier>
    <toRole>
    <PartnerRoleDescription>
    <GlobalPartnerRoleClassificationCode>Buyer</GlobalPartnerRoleClassificationCode>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>007710825</GlobalBusinessIdentifier>
    <GlobalSupplyChainCode>Information Technology</GlobalSupplyChainCode>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </PartnerRoleDescription>
    </toRole>
    </ReceiptAcknowledgement>
    ------=_Part_176_29725195.1331307008851--

    I do have SR but hoping i can get quicker answer hereYou may always escalate the SR if you are not getting response timely. Anyways, give the reference of this thread in the SR and ask service engineer to file a bug.
    I will email you the wire messageI saw the wire message you mailed across. There are some junk characters in the starting of the payload and that's why parsing is failing. Most probably it is a BOM (Byte Order Mark). Ask your TP to send messages in UTF-8 encoding without BOM or any other junk character in the starting of the message. You may open the wire message payload you mailed across in notepad or textpad and you will able to see those junk characters in the starting of the payload.
    Regards,
    Anuj

  • Error 2032 out of the box

    I just installed the Adobe Media Server on my Windows 7 local machine
    On the welcome page, I'm getting error #2032 on every video except the "Single Bitrate" one.
    I've tried the crossdomain.xml fix, and that didn't work.
    I looked for previous versions of Apache to check for port conflicts, and didn't find anything.
    It's frustrating that this doesn't work "out of the box"
    I've previously had Red5 installed, but I uninstalled that before installing AMS.

    Hi
    Can you post the set level manifest you created for multi-bitrate streams?
    Also, I hope yoy are on OSMF 1.6+
    -Karishma

  • Error 2032 in communication between Flex Client and WCF

    Hi All,
    I'm trying to establish communication between Flex Client
    and WCF service.
    WCF service accepts gZip compressed data and returns gZip
    compressed results.
    So I used Flex ByteArray.compress() and
    ByteArray.uncompress() for this purpose. However, it throws error
    2032.
    The gZip compression/decompression uses MemoryStream class in
    C#. Based on my previous experience, memory stream communication
    between Flex and C# gives erro 2032.
    Is there a work around for this?
    Thanks,
    Vishal

    I read some thread in the forum, and found somebody had the similar problem with me. Just want to know how to settle this problem.
    In the client/server program. Client is a JAVA program and Server a
    VC++ program. The connection works, and the problem appears after some time. The Client sends a lots of requests to Serverm, the server seems receive nothing. But at the same time, the server is able to send messages to Client. The Client also can get the messages and handle them. Don't understand why there this problem and why it appears when it wants.
    The client is a Win2k platorm with JDK1.3.1 and the server is also a Win2K platform with VC++ 6.0.
    In the Client, using:
    inputFromServer = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    outputToServer = new PrintWriter(new BufferedWriter(new OutputStreamWriter(socket.getOutputStream())),true);
    Hope can get your help.

Maybe you are looking for

  • Session variable usage in report title

    Is there a way to add session variable s_x in the report's title text? What is the correct syntax?

  • Importing Email address book into Windows 8.1

    How do I import an email address book into my windows Outlook Express?

  • Return Max Sequence According to User has specific event type

    Dear Friends, Please help me with this query DECLARE @MyTable TABLE (     event_sequence    numeric(9,0),     event_date        datetime,     event_type        int,     mod_user        varchar(25)) INSERT INTO @MyTable VALUES (4571593,'2014-02-28 17:

  • My Iphone won't sync with my new computer

    I recently lost my hard drive on my old computer. I have authorized my phone on my girl friends computer which uses windows XP, but when I go to transfer songs from her library on ITunes I get a message that it will wipe all the music off my phone an

  • Should I use Dreamweaver Layout Templates?

    Just curious from some more experienced web designers out there...  Should I use the prebuilt Templates that come with Dreamweaver to kick-start my coding?  Seems simple enough...  You get the .html file and the corresponding .css file as well.   See