Skip to main content
Participant
April 19, 2013
Question

Error 2032 returned after AIR 3.7?

  • April 19, 2013
  • 3 replies
  • 1289 views

After the updates on April 10th, our AIR application is giving the same I/O errors from a few years back.

HTTP request error: Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032" errorID=2032].

I noticed in the release notes something about 'sandbox' updates.  This could cause trouble for an older flex app like ours.

Has anyone else seen this behavior?

Here is one of the requests that isn't working:

Top level version info:

xmlns:app="app.*"

xmlns:mx="http://www.adobe.com/2006/mxml"

xmlns:updater="http://updater.readingcompanion.org/"

Function:

private function submitDraftWithRec( event:Object ):void {

            if (event.detail == Alert.YES ) {

                displayFreezePopup("Submitting draft with recordings, please wait... This could take a couple of minutes.");

                var httpSvc:HTTPService = new HTTPService();

                httpSvc.url = BB_WEB_APP_URL + "book/submitDraft";

                httpSvc.method = "POST";

               

                httpSvc.addEventListener(ResultEvent.RESULT, submitResultHndlr); 

                httpSvc.addEventListener(FaultEvent.FAULT, httpFault);

               

                httpSvc.send({"bookID":BOOK_ID, "userID":AUTHOR_ID, "withRecordings":true});

            }

        }

This topic has been closed for replies.

3 replies

chris.campbell
Legend
April 20, 2013

Could you please open a new bug report on this over at bugbase.adobe.com?  When adding the bug, please include sample code or an 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 (ccampbel@adobe.com). 

Once added, please post back with the URL so that others affected can add their comments and votes and I'll investigate internally.

Thanks,

Chris

Participant
April 20, 2013
Please download the attached file to view this post