Invalid Namespace when trying to package AIR application

I am using a self-signed certificate when trying to package
my application, but when I run the command to package it I get the
following error: "Invalid namespace
http://ns.adobe.com/air/application/1.0"
Then it leaves a .tmp file in the directory where I ran the
batch file containing the package statement.
What should be done from here?

Check which version of adt you are using. Sounds like you are
using a beta release, which wouldn't recognize the final 1.0
namespace.
Oliver Goldman | Adobe AIR Engineering

Similar Messages

  • I am getting a "invalid screenshot" when trying to upload the screen shot to a Words With Friends cheat app.  It just started doing this!

    I am getting a "invalid screenshot" when trying to upload the screenshot to a Words With Friends cheat application.
    What am I doing wrong?

    That was no help!  When playing with two grown daughters with high IQs,
    I need all the help I can get!

  • Packaging AIR application with ant fails, Packaging AIR application inside IntelliJ works

    Hi,
    I can package AIR application (package type ad-hoc distribution) inside IntelliJ (from Build menu)
    but when I try with my ant build, it encounters an error running the adt command
    Is there a way to have more details on the error? At the moment, it's just a Java returned:2 error.
    I've copied my ant config files below.
    Any ideas anyone on where the problem could lie or how to debug it?
    THANKS!
    Note: I have no issue with the package debug target, be it via IntelliJ or my ant build.
    Build.xml
    <project name="headr" default="package-application-debug-interpreter" basedir="../">
              <property file="build/build.properties" />
              <property name="FLEX_HOME" value="${flexsdk.dir}" />
              <taskdef resource="flexTasks.tasks" classpath="${flexsdk.dir}/ant/lib/flexTasks.jar" />
              <target name="clean" description="deletes everything in build folder">
                        <echo message="Removing build directory contents..." />
                        <delete includeemptydirs="true" quiet="false">
                                  <fileset dir="${build.dir}" />
                        </delete>
              </target>
              <target name="perform-file-copy">
                        <mkdir dir="${build.dir}" />
                        <echo message="Copy files to output dir: ${build.dir}" />
                        <copy file="src/HeadrApplication-app.xml" todir="${build.dir}" />
                        <replace file="${build.dir}/HeadrApplication-app.xml" token="[This value will be overwritten by Flash Builder in the output app.xml]" value="out/HeadrApplication.swf" />
              </target>
              <target name="compile" depends="clean,perform-file-copy">
                        <mxmlc file="src/HeadrApplication.as" output="${build.dir}/HeadrApplication.swf" locale="en_US" accessible="false" actionscript-file-encoding="UTF-8" static-rsls="true" configname="airmobile" debug="${debug}" failonerror="true" maxmemory="1024m" fork="true" swf-version="17">
                                  <load-config filename="${flex_config}" append="true" />
                        </mxmlc>
              </target>
              <target name="pack-application" depends="compile">
                        <java jar="${adt.jar}" fork="true" failonerror="true">
                                  <arg value="-package" />
                                  <arg value="-target" />
                                  <arg value="${target}" />
                                  <arg value="-provisioning-profile" />
                                  <arg value="${provisioning-profile}" />
                                  <arg value="-storetype" />
                                  <arg value="pkcs12" />
                                  <arg value="-keystore" />
                                  <arg value="${keystore}" />
                                  <arg value="-storepass" />
                                  <arg value="${storepass}" />
      <arg value="-extdir" />
      <arg value="ane/" />
                                  <arg value="${build.dir}/HeadrApplication.ipa" />
                                  <arg value="${build.dir}/HeadrApplication-app.xml" />
                                  <arg value="${build.dir}/HeadrApplication.swf" />
                                  <arg value="-C" />
                                  <arg value="src/" />
                                  <arg value="Default.png" />
      <arg value="-C" />
      <arg value="src/" />
      <arg value="[email protected]" />
                                  <arg value="-C" />
                                  <arg value="src/" />
                                  <arg value="icons/." />
                                  <arg value="data/." />
                        </java>
              </target>
              <target name="pack-application-debug" depends="compile">
                        <java jar="${adt.jar}" fork="true" failonerror="true">
                                  <arg value="-package" />
                                  <arg value="-target" />
                                  <arg value="${target}" />
                                  <arg value="-connect" />
                                  <arg value="-provisioning-profile" />
                                  <arg value="${provisioning-profile}" />
                                  <arg value="-storetype" />
                                  <arg value="pkcs12" />
                                  <arg value="-keystore" />
                                  <arg value="${keystore}" />
                                  <arg value="-storepass" />
                                  <arg value="${storepass}" />
      <arg value="-extdir" />
      <arg value="ane/" />
                                  <arg value="${build.dir}/HeadrApplication.ipa" />
                                  <arg value="${build.dir}/HeadrApplication-app.xml" />
                                  <arg value="${build.dir}/HeadrApplication.swf" />
                                  <arg value="-C" />
                                  <arg value="src/" />
                                  <arg value="Default.png" />
      <arg value="-C" />
      <arg value="src/" />
      <arg value="[email protected]" />
                                  <arg value="-C" />
                                  <arg value="src/" />
                                  <arg value="icons/." />
                                  <arg value="data/." />
                        </java>
              </target>
              <target name="package-application-debug-interpreter">
                        <antcall target="pack-application-debug">
                                  <param name="debug" value="true" />
                                  <param name="flex_config" value="build/app-config-device-debug.xml" />
                                  <param name="target" value="ipa-debug-interpreter" />
                                  <param name="provisioning-profile" value="ios_profiles/headr_development.mobileprovision" />
                                  <param name="keystore" value="ios_profiles/dev_certificate.p12" />
                                  <param name="storepass" value="xxxx" />
                        </antcall>
              </target>
              <target name="package-application-debug">
                        <antcall target="pack-application-debug">
                                  <param name="debug" value="true" />
                                  <param name="flex_config" value="build/app-config-device-debug.xml" />
                                  <param name="target" value="ipa-debug" />
                                  <param name="provisioning-profile" value="ios_profiles/headr_development.mobileprovision" />
                                  <param name="keystore" value="ios_profiles/dev_certificate.p12" />
                                  <param name="storepass" value="xxxx" />
                        </antcall>
              </target>
              <target name="package-application-adhoc">
                        <antcall target="pack-application">
                                  <param name="debug" value="false" />
                                  <param name="flex_config" value="build/app-config-device.xml" />
                                  <param name="target" value="ipa-ad-hoc" />
                                  <param name="provisioning-profile" value="ios_profiles/headr_development.mobileprovision" />
                                  <param name="keystore" value="ios_profiles/dev_certificate.p12" />
                                  <param name="storepass" value="xxxxx" />
                        </antcall>
              </target>
              <target name="package-application-appstore">
                        <antcall target="pack-application">
                                  <param name="debug" value="false" />
                                  <param name="flex_config" value="build/app-config-device.xml" />
                                  <param name="target" value="ipa-app-store" />
                                  <param name="provisioning-profile" value="ios_profiles/TODO" />
                                  <param name="keystore" value="ios_profiles/TODO" />
                                  <param name="storepass" value="TODO" />
                        </antcall>
              </target>
              <target name="launch-application">
                        <exec executable="${adl.exe}">
                                  <arg value="bin-debug/HeadrApplication-app.xml" />
                                  <arg value="-profile mobileDevice" />
                        </exec>
              </target>
    </project>
    app-config-device.xml
    <?xml version="1.0"?>
    <flex-config xmlns="http://www.adobe.com/2006/flex-config">
              <compiler>
                        <include-libraries append="true">
                                  <library>../libs/swc/robotlegs-framework-v1.5.2.swc</library>
                                  <library>../libs/swc/greensock-as3-v11.693.swc</library>
                                  <library>../libs/swc/GraphAPI_Mobile_1_8_1.swc</library>
                                  <library>../libs/swc/MonsterDebuggerMobile-v3.0.2.swc</library>
                <library>../libs/swc/TheMiner_en_v1_3_10.swc</library>
                <library>../libs/swc/analytics-v1.1.319.swc</library>
                <library>../libs/swc/assets.swc</library>
                        </include-libraries>
                        <source-path append="true">
                <path-element>../../corelib/src/</path-element>
                <path-element>../../corelib/test/</path-element>
                <path-element>../../corelib/libs/src/</path-element>
                                  <path-element>../libs/src/</path-element>
                        </source-path>
                        <external-library-path append="true">
                <!-- path-element>../ane/com.headr.HeadrNativeExtensions.ane</path-element -->
                <path-element>../ane/com.milkmangames.extensions.GoViral.ane</path-element>
                        </external-library-path>
                        <debug>false</debug>
                        <define>
        <name>CONFIG::debugging</name>
        <value>false</value>
                        </define>
    <define>
        <name>CONFIG::simulator</name>
        <value>false</value>
    </define>
              </compiler>
    </flex-config>

    You may want to try using the settings used by Flash Builder to package the application, more details of which can be found at:http://helpx.adobe.com/x-productkb/multi/compilation-results-flex-buil der-flex.html
    Update your ANT script with these, and try again.

  • Is it possible to packaging Air application for Mac AppStore with Air 3?

    Is it possible to packaging Air application for Mac AppStore with Air 3 ?

    Anyone from adobe? Anyone?
    Also I was wondering what could prevent the window from going
    away when user uses windows "show desktop" command, or perhaps
    there is a way to restore it right away?
    thanks.

  • Error: Invalid Password when trying to sign in on any wireless devise

    Error:  Invalid Password when trying to sign in on any wireless devise
    I even reinstalled my WRT110 to be sure of the Network Name and Password but I still get this error.  I have never been able to log in to the wireless network.  I can see it - Ienter my password and still "Invalid Password"

    I don't understand this: Connect directly to the router.  Is this the http://192.168.1.1?
    I  HAVE changed the network name, I HAVE changed the password.
    I still get invalid password!!!
    I am extremely frustrated by all this.  I need simple instructions.  I followed them when I set the friggin thing up, I reinstalled.  I know what my friggin password is - why why why?

  • I keep getting an invalid address when trying to purchase songs.  All the information is correct - it just send me in a circle

    I keep getting an invalid address when trying to purchase songs on itune.  All the information entered is correct.  I have tried on my iPhone, iPad, iTouch and on itunes.

    THE FIX: your credit card address AND spelling of your name must match iTunes.
    Please don't google or read other blog entries on the Internet telling you to use a restaurant address or those that are telling you apple is doing address validation. They are all written by 17 year olds who pick up the first thing and re-post. Why do people try to "help" by authoritatively posting an answer? The mass of them are ruining my google searches. :-)
    Apple is now validating whatever ASCII that you told your credit card company. It's not just address validation.
    Name AND address must match.
    Then it worked for me.

  • I get an error when trying to open "The application Creative Cloud can't be opened. -1712

    I get an error when trying to open "The application Creative Cloud can't be opened. -1712

    The application Install.app can't be opened. -1712

  • Error when trying to run an application that worked when built with 8.6

    I have a simple program that I wrote in version 8.6 that I never had a problem building and running applications built with it in 8.6.  Two weeks ago I got 2009 in the mail because we had very recently purchased 8.6 and I am getting errors when trying to run an application built with the same code using 2009.  The error has to do with the Mean.vi.  It claims it cannot find it.  The error I get reads as follows:
    An error occurred loading VI 'NI_AALBase.lvlib:Mean.vi'.  LabVIEW load error code 3: Could not load front panel.  I don't need access to this vi's front panel, so I am wondering if it is a problem with the runtime engine and not my code.  Please respond as soon as possible as this will quickly start to impact my testing schedule.  Thank You.
    Solved!
    Go to Solution.

    Hi!
    The same problem ???
    I discussed it with my local NI technical support team. The application works without any problems now.
    Basic rule: when creating an installer be sure that option "Run Time Engine xxxx"  in "Additional Installers" category is checked in spite of the fact that Run Time Engine is already installed.
    Best regards.
    Attachments:
    ADDINST.png ‏13 KB

  • Displays blank page when tried to access ORACLE Application Server Control

    Hi,
    I have successfully installed the Oracle SOA Suite using advance installation.
    But when tried to open ORACLE APPLICATION SERVER CONTROL by following the below path.
    start-> programs-> oracle-soa->ORACLE APPLICATION SERVER CONTROL, It displays a blank IE page.
    But when tried to open BPEL control or WSM control or ESB control, it takes me to the login page.
    Note: Started the SOA suite and the status of ASG component in the Start SOA page says Down.Does this affect in anyways?
    Would appreciate if anyone could throw some light on this.

    Hi All,
    I started reinstalling SOA suite and while installation, I encounter below warning.
    "A DHCP configuration was detected on this host" The installer also detected that the localhost name and network hostname differ. please resolve the networking issues by reffering the "Installing on DHCP computers" section in the installation guide."
    Note: Doing installation in the server.
    Wondering this could be the cause for displaying blank Application Server Control page.
    And here is, what it says in the installation guide.
    Note this limitation when running Oracle Application Server on DHCP computers: Oracle Application Server instances on DHCP computers cannot communicate with other instances running on other computers. For example, you cannot have OracleAS Infrastructure on one computer and a middle tier on another computer if any one of those computers uses DHCP. All the instances that need to communicate with each other need to run on the same computer. There are no limitations on clients: clients from other computers can access the instances running on the DHCP computer, as long as the client computer can resolve the DHCP computer on the network.
    The solution for this is installing loopback adapter. But the catch is, I have few webmethods running on the server. Wondering about the effects of Loop back adadpter on webmethods. Please someone throw some light.
    Regards
    jude.

  • STILL GETTING INVALID SIGNATURE WHEN TRYING TO UPDATE ITUNES

    I am still getting invalid signature when trying to update Itunes. I have tried updating manually, but I get the
    same thing, an invalid signature error. I tried updating on another computer in the house and it updated fine!
    That computer was running windows 7. The laptop I'm having problems with is Windows 8. Need Help!!
    THANKS!
    JKay

    Go directly to Apple link to download
    http://support.apple.com/kb/DL1426
    Select "Save" instead of "Run". Once downloaded, double click the iTunessetup.exe or iTunessetup64.exe to install.

  • I purchased Illustrator for one month but when trying to run the application, it asks me to "renew the subscription". I tryed to reload illustrator two times and reloaded CreativeCloud but still it doesn't work. What else can I try? I need AI immediately

    I purchased Illustrator for one month but when trying to run the application, it asks me to "renew the subscription". I tryed to reload illustrator two times and reloaded CreativeCloud but still it doesn't work. What else can I try? I need AI immediately for work

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • Big ANE causes java.lang.OutOfMemoryError when packaging Air application

    Hi,
    I'm working on an Air mobile game that uses ANE on iOS and Android. I'm in the process of creating a new ANE and face a problem on the Android side.
    My ANE requires an external framework (Burstly, http://burstly.com). If I just link the Android project to Burstly's .jar file, I get errors in "adb logcat", like:
    I/dalvikvm(16074): Could not find method com.burstly.lib.BurstlySdk.init, referenced from method com.freshplanet.burstly.functions.InitBurstlyFunction.call
    In order to include Burstly's files in my own .jar, I unzip Burstly's .jar file and repackage them with my compiled code in a unique .jar (following advice on http://stackoverflow.com/questions/7732742/air-3-native-extensions-for-android-can-i-how-t o-include-3rd-party-libraries).
    Problem: Burstly's SDK includes thousands of files. It doesn't create any trouble when packaging the ANE, but when I try to package the Air application, I get the following error:
    dx tool failed:
    UNEXPECTED TOP-LEVEL ERROR:
    java.lang.OutOfMemoryError: Java heap space
              at com.android.dx.util.IntList.<init>(IntList.java:87)
              at com.android.dx.rop.code.RopMethod.calcPredecessors(RopMethod.java:174)
              at com.android.dx.rop.code.RopMethod.labelToPredecessors(RopMethod.java:95)
              at com.android.dx.ssa.back.IdenticalBlockCombiner.process(IdenticalBlockCombiner.java:74)
              at com.android.dx.ssa.back.SsaToRop.convert(SsaToRop.java:132)
              at com.android.dx.ssa.back.SsaToRop.convertToRopMethod(SsaToRop.java:76)
              at com.android.dx.ssa.Optimizer.optimize(Optimizer.java:103)
              at com.android.dx.ssa.Optimizer.optimize(Optimizer.java:74)
              at com.android.dx.dex.cf.CfTranslator.processMethods(CfTranslator.java:269)
              at com.android.dx.dex.cf.CfTranslator.translate0(CfTranslator.java:131)
              at com.android.dx.dex.cf.CfTranslator.translate(CfTranslator.java:85)
              at com.android.dx.command.dexer.Main.processClass(Main.java:299)
              at com.android.dx.command.dexer.Main.processFileBytes(Main.java:278)
              at com.android.dx.command.dexer.Main.access$100(Main.java:56)
              at com.android.dx.command.dexer.Main$1.processFileBytes(Main.java:229)
              at com.android.dx.cf.direct.ClassPathOpener.processArchive(ClassPathOpener.java:244)
              at com.android.dx.cf.direct.ClassPathOpener.processOne(ClassPathOpener.java:130)
              at com.android.dx.cf.direct.ClassPathOpener.process(ClassPathOpener.java:108)
              at com.android.dx.command.dexer.Main.processOne(Main.java:247)
              at com.android.dx.command.dexer.Main.processAllFiles(Main.java:183)
              at com.android.dx.command.dexer.Main.run(Main.java:139)
              at com.android.dx.command.dexer.Main.main(Main.java:120)
              at com.android.dx.command.Main.main(Main.java:89)
    I read that the solution to eliminate this error is to give Java the parameters "-Xms...M -Xmx...M", with "..." being a high-enough number. Note that I'm working on a machine with 8GB of RAM. I tried to package the app in command line to be able to pass these parameters:
    /usr/bin/java -Xms512M -Xmx4096M -jar "/Applications/Adobe Flash Builder 4.6/sdks/4.6.0air31/lib/adt.jar" -package -target apk -storetype pkcs12 -keystore [...].p12 Main.apk Main-app.xml Main.swf -extdir "/Users/alex/Documents/Adobe Flash Builder 4.6/.metadata/.plugins/com.adobe.flexbuilder.project.ui/ANEFiles/front-end-mobile/com.ado be.flexide.multiplatform.ios.platform"
    But when I run a "ps -ef | grep java", I can see that adt runs another Java program (dx) without transmitting my -Xms -Xmx parameters:
    /usr/bin/java -jar /Applications/Adobe Flash Builder 4.6/sdks/4.6.0air31/lib/android/bin/dx.jar --dex --output=/private/var/folders/t9/3kw74cx14nv2xg9tgmx9m1jc0000gp/T/b5757d93-1e93-439c-8f6d -c93e4933f6f1/outputDEX.dex [... bunch of jars]
    Any idea to solve this issue?
    Thanks
    Alex

    I solved my issue by setting the _JAVA_OPTIONS environment variable. (Note: there are two underscores)
    I added the following line to my .bash_profile:
    export _JAVA_OPTIONS="-Xms1024m -Xmx4096m -XX:MaxPermSize=512m"
    Now everytime a Java program is launched from the command line, I see the following message:
    Picked up _JAVA_OPTIONS: -Xms1024m -Xmx4096m -XX:MaxPermSize=512m
    And my application packaging runs just fine now.
    I still have an issue though: this trick solved the problem for packaging the app from the command line, but the _JAVA_OPTIONS are not picked up when packaging from Flash Builder, so it still crashes there.
    Note that my Adobe Flash Builder 4.6.ini contains the following options:
    -Xms512m
    -Xmx1676m
    -XX:MaxPermSize=512m
    -XX:PermSize=64m
    1676m is the highest number I can put before Flash Builder refuses to launch. I'm not sure if these parameters are actually passed to the VM that runs de dx.jar program, or if it's just for the ActionScript compiler. But anyway my app packaging still crashes in Flash Builder.
    If someone knows a way to force Flash Builder to pickup the _JAVA_OPTIONS set in the command line, let me know :-)
    Thanks
    Alex

  • Fatal error when trying to install AIR app on OSX

    A user of my application is getting a fatal error when trying to install on OSX. Most installs seem to go fine so I was surprised at this one.
    A portion of the OSX error report is below. Has anybody experienced anything similar? If so, were you able to identify the core problem?
    Thanks in advance for any thoughts!
    Daniel
    Date/Time:       2013-06-13 15:50:24.666 -0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          1414734 sec
    Crashes Since Last Report:           30
    Per-App Crashes Since Last Report:   5
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000008
    VM Regions Near 0x8:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/SimpleDiagrams2.app/Contents/MacOS/SimpleDiagrams2
        __TEXT                 0000000000001000-0000000000007000 [   24K] r-x/rwx SM=COW  /Applications/SimpleDiagrams2.app/Contents/MacOS/SimpleDiagrams2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                      0x02b43f72 0x2800000 + 3424114
    1   com.adobe.AIR                      0x02909628 0x2800000 + 1087016
    2   com.adobe.AIR                      0x02909853 0x2800000 + 1087571
    3   com.apple.AppKit                   0x95544970 -[NSApplication(NSAppleEventHandling) _handleAEReopen:] + 255
    4   com.apple.AppKit                   0x952ec824 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 378
    5   libobjc.A.dylib                    0x9a3c9628 -[NSObject performSelector:withObject:withObject:] + 77
    6   com.apple.Foundation               0x94e4473a __76-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 + 121
    7   com.apple.Foundation               0x94e44291 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    8   com.apple.Foundation               0x94e4408e _NSAppleEventManagerGenericHandler + 173
    9   com.apple.AE                       0x97aeda35 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 331
    10  com.apple.AE                       0x97ac2fbe dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    11  com.apple.AE                       0x97ac2e7d aeProcessAppleEvent + 318
    12  com.apple.HIToolbox                0x9222fc58 AEProcessAppleEvent + 100
    13  com.apple.AppKit                   0x952e8d4d _DPSNextEvent + 1655
    14  com.apple.AppKit                   0x952e81dc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    15  com.apple.AppKit                   0x952de63c -[NSApplication run] + 855
    16  com.adobe.AIR                      0x0280a772 0x2800000 + 42866
    17  com.adobe.AIR                      0x0280aab8 0x2800000 + 43704
    18  libobjc.A.dylib                    0x9a3c95d3 -[NSObject performSelector:withObject:] + 70
    19  com.simplediagrams2                0x00002f97 start + 2567
    20  com.simplediagrams2                0x000025c5 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib             0x9263d9ae kevent + 10
    1   libdispatch.dylib                  0x97b75c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                  0x97b757a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib             0x9263c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x996fb280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                  0x99781095 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                      0x02d1b113 0x2800000 + 5353747
    4   com.adobe.AIR                      0x02b4d5dc 0x2800000 + 3462620
    5   com.adobe.AIR                      0x02d1b22d 0x2800000 + 5354029
    6   com.adobe.AIR                      0x02d1b2a7 0x2800000 + 5354151
    7   com.adobe.AIR                      0x02d1b342 0x2800000 + 5354306
    8   libsystem_c.dylib                  0x996f65b7 _pthread_start + 344
    9   libsystem_c.dylib                  0x996e0d4e thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib             0x9263c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x996fb280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                  0x99781095 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                      0x02d1b113 0x2800000 + 5353747
    4   com.adobe.AIR                      0x02b4d5dc 0x2800000 + 3462620
    5   com.adobe.AIR                      0x02d1b22d 0x2800000 + 5354029
    6   com.adobe.AIR                      0x02d1b2a7 0x2800000 + 5354151
    7   com.adobe.AIR                      0x02d1b342 0x2800000 + 5354306
    8   libsystem_c.dylib                  0x996f65b7 _pthread_start + 344
    9   libsystem_c.dylib                  0x996e0d4e thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib             0x9263c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x996fb280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                  0x99781095 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                      0x02d1b113 0x2800000 + 5353747
    4   com.adobe.AIR                      0x02b4d5dc 0x2800000 + 3462620
    5   com.adobe.AIR                      0x02d1b22d 0x2800000 + 5354029
    6   com.adobe.AIR                      0x02d1b2a7 0x2800000 + 5354151
    7   com.adobe.AIR                      0x02d1b342 0x2800000 + 5354306
    8   libsystem_c.dylib                  0x996f65b7 _pthread_start + 344
    9   libsystem_c.dylib                  0x996e0d4e thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib             0x9263c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x996fb280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                  0x99781095 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                      0x02d1b113 0x2800000 + 5353747
    4   com.adobe.AIR                      0x02b4d5dc 0x2800000 + 3462620
    5   com.adobe.AIR                      0x02d1b22d 0x2800000 + 5354029
    6   com.adobe.AIR                      0x02d1b2a7 0x2800000 + 5354151
    7   com.adobe.AIR                      0x02d1b342 0x2800000 + 5354306
    8   libsystem_c.dylib                  0x996f65b7 _pthread_start + 344
    9   libsystem_c.dylib                  0x996e0d4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib             0x9263c8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                  0x996fb280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                  0x997810e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.AIR                      0x02d1b13f 0x2800000 + 5353791
    4   com.adobe.AIR                      0x02d60c0e 0x2800000 + 5639182
    5   com.adobe.AIR                      0x02d1b22d 0x2800000 + 5354029
    6   com.adobe.AIR                      0x02d1b2a7 0x2800000 + 5354151
    7   com.adobe.AIR                      0x02d1b342 0x2800000 + 5354306
    8   libsystem_c.dylib                  0x996f65b7 _pthread_start + 344
    9   libsystem_c.dylib                  0x996e0d4e thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib             0x9263d0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x996f90ac _pthread_workq_return + 45
    2   libsystem_c.dylib                  0x996f8e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                  0x996e0d2a start_wqthread + 30
    Thread 8:
    0   libsystem_kernel.dylib             0x9263d0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                  0x996f90ac _pthread_workq_return + 45
    2   libsystem_c.dylib                  0x996f8e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                  0x996e0d2a start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x02b43f55  ecx: 0x95b40466  edx: 0x00000000
      edi: 0x00000000  esi: 0xbfffef18  ebp: 0xbfffee58  esp: 0xbfffeda0
       ss: 0x00000023  efl: 0x00210282  eip: 0x02b43f72   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000008
    Logical CPU: 1

    Hi Daniel,
    Could you post or send me ([email protected]) the entire crash log?  I'll at least need the binaries section so I can properly symbolicate the log.
    Thanks,
    Chris

  • Package AIR Application include serial key list

    Hi all,
    I just finished my AIR application. Now, I want to distribution my app but I don't know how to package to .air file inculde serial key (it's mean to install my app, user must have serial key).
    I searched on google but have no link satisfying.
    Please help me.
    Thanks,
    ndt

    Hi Anton Azarov,
    "trial via instant connection to the internet" I think it's the best solution but if using it, user have to connect internet when run app (It's so inconvenience)
    Anyway, thanks you so much,
    Thanks,
    ndt

  • OIM: Invalid LookupQuery when trying to save

    OIM: 11g (11.1.1.5.2)
    When trying to create a form field, of type LookupField, I am entering the following Lookup Query property value:
    select UD_ADGRP.UD_ADGRP_OBJECTGUID,UD_ADGRP.UD_ADGRP_DISPLAYNAME,UD_ADGRP.UD_ADGRP_DESC from UD_ADGRP,OIU,OBJ,OST where UD_ADGRP.ORC_KEY=OIU.ORC_KEY and oiu.ost_key=ost.ost_key and ost.obj_key=obj.obj_key and ost.ost_status in ('Provisioned', 'Enabled') and upper(obj.obj_name) = upper('AD Group');
    When trying to save, I get
    "Invalid Property Value was specified. Insert Failed"
    My console log show:
    java.sql.SQLSyntaxErrorException: ORA-00911: invalid character
    However, running the above query directly via JDeveloper brings back the proper information.
    Any idea what the invalid character might be?
    Thank you.

    Thank you Kevin, that was it. ( I should have seen that before posting)
    However, now when trying to add the 'Lookup Column Name' and 'Column Names' properties, the same error is being thrown.
    I am setting:
    Lookup Column Name to be: UD_ADGRP_OBJECTGUID
    and it is throwing the errors:
    <Mar 5, 2012 6:54:00 PM EST> <Error> <XELLERATE.SERVER> <BEA-000000> <Class/Method: tcSDP/isPropertyValid Error :Sdp Property value is invalid .>
    <Mar 5, 2012 6:54:00 PM EST> <Error> <XELLERATE.SERVER> <BEA-000000> <Class/Method: tcDataObj/save Error :Insertion of dataobject into database failed>
    <Mar 5, 2012 6:54:00 PM EST> <Error> <XELLERATE.DATABASE> <BEA-000000> <Class/Method: tcDataBase/rollbackTransaction encounter some problems: Rollback Executed From
    java.lang.Exception: Rollback Executed From
         at com.thortech.xl.dataaccess.tcDataBase.rollbackTransaction(tcDataBase.java:578)
    (The same error happens trying to set 'Column Names' value.
    I would like to be able to key on the OBJECTGUID attribute because I want to use it in a process task. I don't want to have to lookup it later. ie: I have a child table trigger that is executing, and the task adapter that I have assigned is needing the GUID as input.
    Thank you.

Maybe you are looking for