-
air app updater
i have an air app that i put some updater code into and i keep getting 1 of 2 errors.
When i test the app in Flash i get Error ID: 404. Invalid HTTP status code: 404
when i install the application and run it i get Error ID: 2032. Error #2032
the error windows are the windows that are written into the code to come up so i know that part of the code is working. Any ideas or similar experiences?
var appUpdater:ApplicationUpdater = new ApplicationUpdater();
var window:NativeWindow;
var windowContent:myWindow = new myWindow();
var existentListeners:Dictionary = new Dictionary();
//initialize the updater; gets called when the application is loaded
function initializeUpdater():void {
setApplicationNameAndVersion();
appUpdater.updateURL = "http://www.mysite.com/myapp/updater/update.xml"; <-----this xml file has a url tag pointing to the new .air file
this is the xml file info:
<?xml version="1.0" encoding="utf-8"?>
<update xmlns="http://ns.adobe.com/air/framework/update/description/1.1">
<version>1.1</version>
<url>http://www.mywebsite.com/updater/newVersion.air.zip</url>
<description><![CDATA[
This version has fixes for the following known issues:
*This issue
*That issue
]]></description>
</update>
-
Moved to Flex and AIR forum
-
-
Nobody is going to answer when members see it is an air application. Check this site:
http://curtismorley.com/2008/02/08/a...pt-error-2032/
You get this error when a file is not loaded. You show too much code. You probably know best where you are loading a file and what the file path is.
-
it is a lot of code i know....not the most ive seen though. so you're saying theres a more appropriate forum for as3 in air?
-
Since you are dealing with an air application I moved the thread to the air forum.