FB 4.7 AIR 3.6 Flex 4.9 iOS packing - Exception in thread "main" java.lang.OutOfMemoryError'

I've got an error similar to Isaac_Sunkes' 'FB 4.7 iOS packaging - Exception in thread "main" java.lang.OutOfMemoryError',
but the causes are not related to what he discovered, corrupt image or other files, I'd exclude bad archive contents in my project.
I'm using Flash Builder 4.7 with Adobe AIR 3.6 set into an Apache Flex 4.9.1 SDK;
HW system is:
iMac,    2,7 GHz Intel Core i5,    8 GB 1600 MHz DDR3,    NVIDIA GeForce GT 640M 512 MB,    OS X 10.8.2 (12C3103)
The Flash project consists in an application with a main SWF file which loads, via ActionScript methods, other SWF in cascade.
I've formerly compiled and run the application on an iPad 1, IOS 5.0.1 (9A405), but got on the device the error alert:
"Uncompiled ActionScript
Your application is attempitng to run
uncompiled ActionScript, probably
due to the use of an embedded
SWF. This is unsupported on iOS.
See the Adobe Developer
Connection website for more info."
Then I changed the FB compiler switches, now are set to:
-locale en_US
-swf-version=19
Please note that without the switch    -swf-version=19     the application is compiled correctly and the IPA is sent to the device
and I can debug it, but iOS traps secondary SWF files and blocke the app usage, as previously told.
they work on deploy of small applications,
but, when I try to build a big IPA file either for an ad-hoc distribution, either for an debug on device, after some minutes long waiting, I get a Java stuck, with this trace:
Error occurred while packaging the application:
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
    at java.util.HashMap.addEntry(HashMap.java:753)
    at java.util.HashMap.put(HashMap.java:385)
    at java.util.HashSet.add(HashSet.java:200)
    at adobe.abc.Algorithms.addUses(Algorithms.java:165)
    at adobe.abc.Algorithms.findUses(Algorithms.java:187)
    at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4731)
    at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3615)
    at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2309)
    at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:532)
    at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:341)
    at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler .java:599)
    at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:104)
I've tried to change the Java settings on FB's eclipse.ini in MacOS folder,
-vmargs
-Xms(various settings up to)1024m
-Xmx(various settings up to)1024m
-XX:MaxPermSize=(various settings up to)512m
-XX:PermSize=(various settings up to)256m
but results are the same.
Now settings are back as recommended:
-vmargs
-Xms256m
-Xmx512m
-XX:MaxPermSize=256m
-XX:PermSize=64m
I've changed the Flex build.properties
jvm.args = ${local.d32} -Xms64m -Xmx1024m -ea -Dapple.awt.UIElement=true
with no results; now I'n get back to the standard:
jvm.args = ${local.d32} -Xms64m -Xmx384m -ea -Dapple.awt.UIElement=true
and now I truely have no more ideas;
could anyone give an help?
many thanks in advance.

I solved this. It turns out the app icons were corrupt. After removing them and replacing them with new files this error went away.

Similar Messages

  • Air iOS compile issue Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 14

    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 14
              at adobe.abc.GlobalOptimizer$InputAbc.readCode(GlobalOptimizer.java:1510)
              at adobe.abc.GlobalOptimizer$InputAbc.readBody(GlobalOptimizer.java:682)
              at adobe.abc.GlobalOptimizer$InputAbc.readBodies(GlobalOptimizer.java:403)
              at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:326)
              at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler.java:472)
              at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82)
    Compilation failed while executing : ADT
    only happens on compiling for iOS, not for Android
    Air 3.1, and flash builder 4.6

    how about this
        public static void main(String[] args)  {
            if(args.length!=2) {
                 System.out.println("Write TWO arguments");
                 return;
            ChatClient client = new ChatClient(args[0], args[1]);
            client.listen();
        }that should make it check that the array length is 2, and inform the user to write 2 arguments if they get it wrong

  • 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

  • Java.lang.OutOfMemoryError on Eclipse with Flex Plugin

    Dear All,
    I am compiling a J2EE+Flex application on eclipse ganymede Version: 3.4 with the following eclipse.ini settings. (I am working on windows7 machine with 3GB Ram)
    -showsplash
    org.eclipse.platform
    --launcher.XXMaxPermSize
    512M
    -framework
    plugins\org.eclipse.osgi_3.4.2.R34x_v20080826-1230.jar
    -vmargs
    -Dosgi.requiredJavaVersion=1.5
    -Xms512m
    -Xmx768m
    -XX:PermSize=512m
    -XX:MaxPermSize=768m
    -XX:+HeapDumpOnOutOfMemoryError
    -Djava.net.preferIPv4Stack=true
    But I have continuously happened to face for the following Memory out of bounce exception during compiling the application.
    An internal error occurred during: "Building Workspace". java.lang.OutOfMemoryError
    Following is the exception trace at <workspace>/.metadeta/.log file.
    eclipse.buildId=M20080911-1700
    java.version=1.6.0_11
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86
    !ENTRY org.eclipse.core.jobs 4 2 2010-05-12 08:14:47.007
    !MESSAGE An internal error occurred during: "Building Workspace".
    !STACK 0
    java.lang.OutOfMemoryError
    at java.io.RandomAccessFile.writeBytes(Native Method)
    at java.io.RandomAccessFile.write(Unknown Source)
    at  flex2.compiler.PersistenceStore.write(PersistenceStore.java: 154)
    at flex2.compiler.API.persistCompilationUnits(API.java:4154)
    at flex2.compiler.API.persistCompilationUnits(API.java:4133)
    at flex2.tools.oem.internal.OEMUtil.save(OEMUtil.java:163)
    at flex2.tools.oem.Application.save(Application.java:506)
    at  com.adobe.flexbuilder.multisdk.compiler.internal.ASBuilder.s aveState(ASBuilder.java:522)
    at  com.adobe.flexbuilder.multisdk.compiler.internal.ASItemBuild er.saveState(ASItemBuilder.java:94)
    at  com.adobe.flexbuilder.project.compiler.BuilderManager.maybeR emoveOldestBuilder(Unknown Source)
    at  com.adobe.flexbuilder.project.compiler.BuilderManager.getBui lder(Unknown Source)
    at  com.adobe.flexbuilder.project.compiler.internal.FlexIncremen talBuilder.preBuild(Unknown Source)
    at  com.adobe.flexbuilder.project.compiler.internal.FlexProjectB uilder.buildItem(Unknown Source)
    at  com.adobe.flexbuilder.project.compiler.internal.FlexProjectB uilder.build(Unknown Source)
    at  com.adobe.flexbuilder.project.compiler.internal.FlexIncremen talBuilder.build(Unknown Source)
    at  org.eclipse.core.internal.events.BuildManager$2.run(BuildMan ager.java:633)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at  org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:170)
    at  org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:201)
    at  org.eclipse.core.internal.events.BuildManager$1.run(BuildMan ager.java:253)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at  org.eclipse.core.internal.events.BuildManager.basicBuild(Bui ldManager.java:256)
    at  org.eclipse.core.internal.events.BuildManager.basicBuildLoop (BuildManager.java:309)
    at  org.eclipse.core.internal.events.BuildManager.build(BuildMan ager.java:341)
    at  org.eclipse.core.internal.resources.Workspace.build(Workspac e.java:330)
    at  org.eclipse.ui.actions.GlobalBuildAction$1.run(GlobalBuildAc tion.java:182)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Someone who please be kind enough to help me out to get rid of this exception, I have been working on days in finding a solution for this. What I found in every place was asking to increase the memory for JVM, as you can see I have already done it at the eclipse.ini file, but the error popping up continuously.
    Thanks a lot in  advance
    mmdsriya

    Try these tips:
    http://www.eclipsezone.com/eclipse/forums/t61618.html
    http://wiki.eclipse.org/FAQ_How_do_I_increase_the_permgen_size_available_to_Eclipse%3F
    I'm not sure why you have --launcher.XXMaxPermSize so high. You might have to tweak your settings for less perm gen space and more heap.
    Jason San Jose
    Software Engineer, Flash Builder

  • Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS

    Hi All,
    https://bugbase.adobe.com/index.cfm?event=bug&id=3071298
    As per above link this bug resolve(latest build) but i am facing  Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS, using the packaging tools.
    (for  inappPurchase Demo app --- i used below link code)
    http://code.google.com/p/in-app-purchase-air-ios/
    Thanks,
    Sunil Rana

    Hi Everyone,
    I'm getting basically the same error. Are there any rules or guidelines that we are suppose follow when writing an app for iOS? Is there a way to know exactly where it is crashing? My apps are not MXML, only actionscript. Also I made sure I have no errors not even warnings in my SWF file, but still no go! 
    Getting the same error.
    Exception in thread "main" java.lang.NullPointerException
            at adobe.abc.GlobalOptimizer.sccp_eval(GlobalOptimizer.java:6944)
            at adobe.abc.GlobalOptimizer.sccp_analyze(GlobalOptimizer.java:5909)
            at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4628)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3514)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2215)
            at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:526)
            at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:336)
            at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler
    .java:472)
            at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82)
    Compilation failed while executing : ADT
    regards,
    Keith

  • Java.lang.NullPointerException is thrown when packaging Adobe AIR 3 application for iOS

    I just update my AIR project for iOS from Adobe AIR 2.6 to Adobe AIR 3.1 (that comes with Flash Builder 4.6), than I always got an exception when packaging my application:
    Error occurred while packaging the application:
        Exception in thread "main" java.lang.NullPointerException
            at adobe.abc.Nsset.match(Nsset.java:263)
            at adobe.abc.Name.match(Name.java:555)
            at adobe.abc.Symtab.getEntry(Symtab.java:37)
            at adobe.abc.Symtab.get(Symtab.java:55)
            at adobe.abc.Type.setNeedsArgumentsUpInheritanceHierarchy(Type.java:343)
            at adobe.abc.Type.setNeedsArgumentsUptoRoot(Type.java:269)
            at adobe.abc.GlobalOptimizer$InputAbc.resolveType(GlobalOptimizer.java:558)
            at adobe.abc.GlobalOptimizer$InputAbc.resolveType(GlobalOptimizer.java:448)
            at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:327)
            at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler.java:472)
            at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82)
        Compilation failed while executing : ADT
    What is the cause of this error, so I can avoid it in my project before AIR team fix this?
    Thank you.

    Hi Everyone,
    I'm getting basically the same error. Are there any rules or guidelines that we are suppose follow when writing an app for iOS? Is there a way to know exactly where it is crashing? My apps are not MXML, only actionscript. Also I made sure I have no errors not even warnings in my SWF file, but still no go! 
    Getting the same error.
    Exception in thread "main" java.lang.NullPointerException
            at adobe.abc.GlobalOptimizer.sccp_eval(GlobalOptimizer.java:6944)
            at adobe.abc.GlobalOptimizer.sccp_analyze(GlobalOptimizer.java:5909)
            at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4628)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3514)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2215)
            at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:526)
            at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:336)
            at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler
    .java:472)
            at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82)
    Compilation failed while executing : ADT
    regards,
    Keith

  • What is the official AIR SDK and FLEX version to release for iOS6 ?

    Hi,
    Wanted to know which AIR SDK and FLEX version is fully suporting the iOS6 to submit to Apple.
    I found that AIR SDK 3.4 is supporting iOS6, though the code created for iOS 6 is not working correctly when build from Flash Builder 4.7 AIR SDK 3.4 FLEX SDK 4.6 .
    Thanks
    Regards

    19th...

  • Convert HTML/javascript AIR app to flex-based AIR app?

    Hi all,
    I've already built an AIR app using HTML/javascript that I
    would like to monetize.
    I would like to use O2app's E-Commerce framework, which right
    now only supports Flex-created AIR apps.
    My question: Is there a simple way to "convert" an
    HTML/javascript AIR app to Flex 3 format? I'd rather not have to
    rebuild the app from scratch in Flex 3 if I don't have to. :)
    Thanks,
    Al

    Hi,
    There's no simple way to convert an HTML AIR app to flex.
    But it is possible to create HTML Root windows from a Flex
    AIR App. By root window, I mean the same kind of window that is
    launched when you launch an HTML AIR App.
    For more info, look at the HTMLLoader.createRootWindow()
    call. (This will be available from a Flex AIR app as well)

  • [svn:fx-4.0.0] 13478: AIR Kit for Flex 4 - version 1.5.3

    Revision: 13478
    Revision: 13478
    Author:   [email protected]
    Date:     2010-01-13 06:09:40 -0800 (Wed, 13 Jan 2010)
    Log Message:
    AIR Kit for Flex 4 - version 1.5.3
    Same AIR runtime as before. Contains files updated for Flex 4:
    applicationupdater.swc
    applicationupdater.swf
    applicationupdater_ui.swc
    applicationupdater_ui.swf.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-15011
    Reviewer:
    Tests run: checkintests, AIR tests on Windows and Mac.
    Is noteworthy for integration: Yes.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-15011
    Modified Paths:
        flex/sdk/branches/4.0.0/frameworks/build.xml
        flex/sdk/branches/4.0.0/in/air/air_version.txt
        flex/sdk/branches/4.0.0/in/air/mac/AIR Integration Kit.tbz2
        flex/sdk/branches/4.0.0/in/air/win/AIR Integration Kit.zip

  • Flex 4.6 IOS Compiler ADT Failed at  EXCEPTION_UNCAUGHT_CXX_EXCEPTION

    Hi All,
    I tried to create IPA file through both Windows XP and MAC by using ADT command Line, two ENV are with same JRE version and FB version, however, I met totally different results.
    On MAC, the IPA was created successfully, while on Windows XP, I am hitting "EXCEPTION_UNCAUGHT_CXX_EXCEPTION" exceptions. The log posted below:
    Searching internet, found a post @ http://stackoverflow.com/questions/8879833/flex-4-6-ios-compiler has similar error as me, but can not find any solutions there, I tried to follow some suggestion there to change different XMX size and no lucky so far.
    Post question here, can any one give me a light.
    Thanks.
    ========================================================================================== =========
    # A fatal error has been detected by the Java Runtime Environment:
    #  EXCEPTION_UNCAUGHT_CXX_EXCEPTION (0xe06d7363) at pc=0x7c812afb, pid=7108, tid=8132
    # JRE version: 7.0_03-b05
    # Java VM: Java HotSpot(TM) Client VM (22.1-b02 mixed mode windows-x86 )
    # Problematic frame:
    # C  [kernel32.dll+0x12afb]
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    # If you would like to submit a bug report, please visit:
    #   http://bugreport.sun.com/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x003e7800):  JavaThread "main" [_thread_in_native, id=8132, stack(0x00910000,0x00a90000)]
    siginfo: ExceptionCode=0xe06d7363, ExceptionInformation=0x19930520 0x00a8f7b0 0x49de74a4
    Registers:
    EAX=0x00a8f718, EBX=0x00400000, ECX=0x00000000, EDX=0x49eb6aa0
    ESP=0x00a8f714, EBP=0x00a8f768, ESI=0x00a8f7a0, EDI=0x72af0020
    EIP=0x7c812afb, EFLAGS=0x00000206
    Top of Stack: (sp=0x00a8f714)
    0x00a8f714:   49eb666c e06d7363 00000001 00000000
    0x00a8f724:   7c812afb 00000003 19930520 00a8f7b0
    0x00a8f734:   49de74a4 4a019ca4 4a019ca4 00a8f760
    0x00a8f744:   49cb398f d61216f8 d5dcc161 49cbcad0
    0x00a8f754:   49eb6aa0 00a8f798 49cb5542 00000008
    0x00a8f764:   49cb3a0e 00a8f7a0 49cb3439 e06d7363
    0x00a8f774:   00000001 00000003 00a8f794 e06d7363
    0x00a8f784:   00000001 00000000 00000000 00000003
    Instructions: (pc=0x7c812afb)
    0x7c812adb:   f9 0f 0f 87 6d 1e 03 00 85 c9 89 4d c0 74 07 57
    0x7c812aeb:   8d 7d c4 f3 a5 5f 8d 45 b0 50 ff 15 10 15 80 7c
    0x7c812afb:   5e c9 c2 10 00 85 ff 0f 8e 36 93 ff ff 8b 55 fc
    0x7c812b0b:   89 55 0c 0f b7 16 8b 7d f8 8a 14 3a 88 11 8b 78
    Register to memory mapping:
    EAX=0x00a8f718 is pointing into the stack for thread: 0x003e7800
    EBX=0x00400000 is an unknown value
    ECX=0x00000000 is an unknown value
    EDX=0x49eb6aa0 is an unknown value
    ESP=0x00a8f714 is pointing into the stack for thread: 0x003e7800
    EBP=0x00a8f768 is pointing into the stack for thread: 0x003e7800
    ESI=0x00a8f7a0 is pointing into the stack for thread: 0x003e7800
    EDI=0x72af0020 is an unknown value
    Stack: [0x00910000,0x00a90000],  sp=0x00a8f714,  free space=1533k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [kernel32.dll+0x12afb]  RaiseException+0x52
    C  [llvm.dll+0x443439]
    C  [llvm.dll+0x4429d5]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  llvm.llvmJNI.WriteModuleToFile(Ljava/lang/String;JLllvm/Module;J)V+0
    j  llvm.LLVM.WriteModuleToFile(Ljava/lang/String;Lllvm/Module;J)V+7
    j  com.adobe.air.ipa.AOTCompiler.writeBitcode(Ljava/lang/String;Lllvm/Module;)Ljava/io/File; +52
    j  com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl()V+721
    j  com.adobe.air.ipa.BitcodeGenerator.main([Ljava/lang/String;)V+114
    v  ~StubRoutines::call_stub
    ---------------  P R O C E S S  ---------------
    Java Threads: ( => current thread )
      0x49171400 JavaThread "Service Thread" daemon [_thread_blocked, id=6184, stack(0x496a0000,0x49820000)]
      0x4916c000 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=4024, stack(0x49650000,0x496a0000)]
      0x4916a000 JavaThread "Attach Listener" daemon [_thread_blocked, id=6516, stack(0x494d0000,0x49650000)]
      0x49168c00 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=7532, stack(0x49350000,0x494d0000)]
      0x48de0c00 JavaThread "Finalizer" daemon [_thread_blocked, id=6480, stack(0x48fd0000,0x49150000)]
      0x48ddbc00 JavaThread "Reference Handler" daemon [_thread_blocked, id=608, stack(0x48e50000,0x48fd0000)]
    =>0x003e7800 JavaThread "main" [_thread_in_native, id=8132, stack(0x00910000,0x00a90000)]
    Other Threads:
      0x48dd6400 VMThread [stack: 0x48e00000,0x48e50000] [id=5676]
      0x49184800 WatcherThread [stack: 0x49820000,0x49870000] [id=7184]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation   total 314560K, used 279616K [0x02b40000, 0x18090000, 0x18090000)
      eden space 279616K, 100% used [0x02b40000, 0x13c50000, 0x13c50000)
      from space 34944K,   0% used [0x13c50000, 0x13c50000, 0x15e70000)
      to   space 34944K,   0% used [0x15e70000, 0x15e70000, 0x18090000)
    tenured generation   total 699072K, used 699071K [0x18090000, 0x42b40000, 0x42b40000)
       the space 699072K,  99% used [0x18090000, 0x42b3ffe8, 0x42b40000, 0x42b40000)
    compacting perm gen  total 12288K, used 4357K [0x42b40000, 0x43740000, 0x46b40000)
       the space 12288K,  35% used [0x42b40000, 0x42f81740, 0x42f81800, 0x43740000)
    No shared spaces configured.
    Code Cache  [0x00ac0000, 0x00e28000, 0x02ac0000)
    total_blobs=1624 nmethods=1398 adapters=162 free_code_cache=29297Kb largest_free_block=29998144
    Dynamic libraries:
    0x00400000 - 0x0042e000           C:\windows\system32\java.exe
    0x7c900000 - 0x7c9b2000           C:\windows\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000           C:\windows\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000           C:\windows\system32\ADVAPI32.dll
    0x77e70000 - 0x77f03000           C:\windows\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000           C:\windows\system32\Secur32.dll
    0x7e410000 - 0x7e4a1000           C:\windows\system32\USER32.dll
    0x77f10000 - 0x77f59000           C:\windows\system32\GDI32.dll
    0x773d0000 - 0x774d3000           C:\windows\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.60 28_x-ww_61e65202\COMCTL32.dll
    0x77c10000 - 0x77c68000           C:\windows\system32\msvcrt.dll
    0x77f60000 - 0x77fd6000           C:\windows\system32\SHLWAPI.dll
    0x76390000 - 0x763ad000           C:\windows\system32\IMM32.DLL
    0x629c0000 - 0x629c9000           C:\windows\system32\LPK.DLL
    0x74d90000 - 0x74dfb000           C:\windows\system32\USP10.dll
    0x78aa0000 - 0x78b5e000           C:\Program Files\Java\jre7\bin\msvcr100.dll
    0x6d830000 - 0x6db58000           C:\Program Files\Java\jre7\bin\client\jvm.dll
    0x71ad0000 - 0x71ad9000           C:\windows\system32\WSOCK32.dll
    0x71ab0000 - 0x71ac7000           C:\windows\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000           C:\windows\system32\WS2HELP.dll
    0x76b40000 - 0x76b6d000           C:\windows\system32\WINMM.dll
    0x76bf0000 - 0x76bfb000           C:\windows\system32\PSAPI.DLL
    0x6d7c0000 - 0x6d7cc000           C:\Program Files\Java\jre7\bin\verify.dll
    0x6d2f0000 - 0x6d310000           C:\Program Files\Java\jre7\bin\java.dll
    0x6d810000 - 0x6d823000           C:\Program Files\Java\jre7\bin\zip.dll
    0x49870000 - 0x49ef2000           C:\Program Files\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\lib\aot\lib\llvm.dll
    0x59a60000 - 0x59b01000           C:\windows\system32\dbghelp.dll
    0x77c00000 - 0x77c08000           C:\windows\system32\VERSION.dll
    VM Arguments:
    jvm_args: -Djava.util.Arrays.useLegacyMergeSort=true -Xss1500K -Xms256m -Xmx1024m
    java_command: com.adobe.air.ipa.BitcodeGenerator C:\TEMP\7026\iOS\AOTBuildOutput6004052247317877068.tmp\BitcodeGenerator_opts.ser C:\TEMP\7026\iOS\AOTBuildOutput6004052247317877068.tmp\ABCFiles
    Launcher Type: SUN_STANDARD
    Environment Variables:
    CLASSPATH=.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip
    PATH=C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\ZipGenius 6\;C:\Program Files\Java\jdk1.6.0_05\bin;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\;C:\Program Files\WinMerge;C:\WINDOWS\system32\WindowsPowerShell\v1.0;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\;c:\Program Files\Microsoft SQL Server\100\DTS\Binn\;c:\Program Files\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\apache-ant-1.8.1\bin;C:\Program Files\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\lib; C:\Program Files\Research In Motion\blackberry-tablet-sdk-2.0.0\bin;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\frameworks;C:\Program Files\TortoiseSVN\bin
    USERNAME=Mounib
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 37 Stepping 2, GenuineIntel
    ---------------  S Y S T E M  ---------------
    OS: Windows XP Build 2600 Service Pack 3
    CPU:total 4 (2 cores per cpu, 2 threads per core) family 6 model 37 stepping 2, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 3633132k(906276k free), swap 5560948k(1664932k free)
    vm_info: Java HotSpot(TM) Client VM (22.1-b02) for windows-x86 JRE (1.7.0_03-b05), built on Feb  3 2012 20:43:37 by "java_re" with unknown MS VC++:1600
    time: Thu Apr 19 10:47:22 2012
    elapsed time: 472 seconds

    Same issue for me, my coworkers can build on their Mac but I can't using Windows.
    I've got a different config:
    ---------------  S Y S T E M  ---------------
    OS: Windows 7 , 64 bit Build 7601 Service Pack 1
    CPU:total 8 (4 cores per cpu, 2 threads per core) family 6 model 30 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht
    Memory: 4k page, physical 4117044k(46756k free), swap 8232240k(3170684k free)
    vm_info: Java HotSpot(TM) Client VM (20.6-b01) for windows-x86 JRE (1.6.0_31-b05), built on Feb  3 2012 18:44:09 by "java_re" with MS VC++ 7.1 (VS2003)

  • TS3274 iPad iOS 7.0.2 does not Trust to iTunes [11.1.1(11)] on MacBook Air 10.8.5 to iPad iOS 7.0.2

    When trying to link iTunes [11.1.1(11)] on MacBook Air 10.8.5 to iPad iOS 7.0.2, even when I choose TRUST fails to connect indicating that my computer does not have permission. Even I choose TRUST, i end up with "iTunes could not connect to this iPad. You do not have permission." This is a new MacBook Air and i have recently migrated from MacBook Pro. It seems that there is a solution for this on PC but I am failing to find a thread on my specific problem. I can access to my photos and the iPad does charge. So the problem appears to be one of iTunes. I tried all the basic fixes of turning on/off both devices. I also used Disk Repair Utility to verify and repair permission—to no avail. Any help would be appreciated.

    Thank you for your reply :-),
    I think I read the instructions carefully and understood that this upgrade applies only to Snow Leopard 10.6.8 and up. I only have Lepord 10.5.8 on a MacBook Intel Duo Core.
    Can I do this upgarde as well?

  • Flex 4.5 - java.lang.IllegalArgumentException: argument type mismatch

    0 down vote favorite
    I am having a problem when sending a soap request from a flex  4.5 application to a coldfusion 9 web service created using a CFC.
    The  most annoying thing it is only an intermittent problem but I can't work  out what is wrong.
    There a many methods within the web service of which Flex has no  issue, but these are mainly ones that read data.  The one I am having a  problem with is one that is writing back to the web service.
    The issue only arises when I have to restart the Coldfusion service  for some reason, which is quite often as the development machine is my  laptop.  It has now also happened when I have moved the Flex app to a  development server for testing and as it's hosted I can't restart the  services easily.
    I get the response below every time.  I have tried tracing the call  through the Flash Builder Network monitor and building a dummy call  using the same data, all to no avail.
    I have tried stripping out all of the code and then rebuilding it,  which takes a long time as I am using custom types in ColdFusion.
    Also , if I cfinvoke the method through a CFM page, it works fine. It  is only when trying to call it through a SOAP request through Flex 4.5.
    It will then suddenly start working again however and then it is fine  until I restart the CF services again.
    I can't tell what I triggers it  to start working again.
    Does something initialise it in ColdFusion and then it's fine ???.  I am  really struggling with this and any help would be appreciated.
    I have a  sample SOAP request that I trapped in the Network Monitor and also the  WSDL if needed.
    java.lang.IllegalArgumentException: argument type mismatch
        <ns1:stackTrace xmlns:ns1="http://xml.apache.org/axis/"
        xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">java.lang.IllegalArgumentException: argument type mismatch
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.axis.utils.BeanPropertyDescriptor.set(BeanPropertyDescriptor.java:142)
    at org.apache.axis.encoding.ser.BeanPropertyTarget.set(BeanPropertyTarget.java:75)
    at org.apache.axis.encoding.DeserializerImpl.valueComplete(DeserializerImpl.java:249)
    at org.apache.axis.encoding.DeserializerImpl.endElement(DeserializerImpl.java:509)
    at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
    at org.apache.axis.message.SAX2EventRecorder.replay(SAX2EventRecorder.java:171)
    at org.apache.axis.message.MessageElement.publishToHandler(MessageElement.java:1141)
    at org.apache.axis.message.RPCElement.deserialize(RPCElement.java:236)
    at org.apache.axis.message.RPCElement.getParams(RPCElement.java:384)
    at org.apache.axis.providers.java.RPCProvider.processMessage(RPCProvider.java:148)
    at org.apache.axis.providers.java.JavaProvider.invoke(JavaProvider.java:323)
    at coldfusion.xml.rpc.CFCProvider.invoke(CFCProvider.java:54)
    at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
    at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:453)
    at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
    at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:699)
    at coldfusion.xml.rpc.CFCServlet.doAxisPost(CFCServlet.java:270)
    at coldfusion.filter.AxisFilter.invoke(AxisFilter.java:43)
    at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:356)
    at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
    at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:87)
    at coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
    at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
    at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
    at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.xml.rpc.CFCServlet.invoke(CFCServlet.java:138)
    at coldfusion.xml.rpc.CFCServlet.doPost(CFCServlet.java:289)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
    at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)
    at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)</ns1:stackTrace>
    <ns2:hostname xmlns:ns2="http://xml.apache.org/axis/" xmlns:soapenv
    ="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org2001/XMLSchema-instance">Darren-LT</ns2:hostname>

    Someone suggested it could be a serialisation issue but I I'm not sure how to go about checking that.
    Any suggestions ?

  • Java.lang.NoClassDefFoundError: coldfusion/flex/CFEventGatewayAdapter

    When I start EventGateway of DataServicesMessaging, I got an
    exception like below.
    How should I do for fixing this problem???
    I installed ColdFusion 801 without LiveCycle Data Services.
    I installed LiveCycle Data Services on same machine.
    We can't do this?? We have to install LiveCycle Data Services
    by CF installer???
    500
    ROOT CAUSE:
    java.lang.NoClassDefFoundError:
    coldfusion/flex/CFEventGatewayAdapter
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at
    java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.getConstructor(Class.java:1657)
    at
    coldfusion.eventgateway.EventServiceImpl.allocateEventGateway(EventServiceImpl.java:1031)
    at
    coldfusion.eventgateway.EventServiceImpl.startEventGateway(EventServiceImpl.java:398)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at coldfusion.runtime.StructBean.invoke(StructBean.java:511)
    at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2300)
    at
    cfgateways2ecfm251583696._factor5(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\even tgateway\gateways.cfm:261)
    at
    cfgateways2ecfm251583696._factor20(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\eve ntgateway\gateways.cfm:251)
    at
    cfgateways2ecfm251583696.runPage(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\event gateway\gateways.cfm:1)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
    at
    coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:175)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
    at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
    at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Caused by: java.lang.ClassNotFoundException:
    coldfusion.flex.CFEventGatewayAdapter
    at
    coldfusion.bootstrap.BootstrapClassLoader.loadClass(BootstrapClassLoader.java:235)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at
    java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    ... 45 more
    javax.servlet.ServletException: ROOT CAUSE:
    java.lang.NoClassDefFoundError:
    coldfusion/flex/CFEventGatewayAdapter
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at
    java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.getConstructor(Class.java:1657)
    at
    coldfusion.eventgateway.EventServiceImpl.allocateEventGateway(EventServiceImpl.java:1031)
    at
    coldfusion.eventgateway.EventServiceImpl.startEventGateway(EventServiceImpl.java:398)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at coldfusion.runtime.StructBean.invoke(StructBean.java:511)
    at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2300)
    at
    cfgateways2ecfm251583696._factor5(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\even tgateway\gateways.cfm:261)
    at
    cfgateways2ecfm251583696._factor20(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\eve ntgateway\gateways.cfm:251)
    at
    cfgateways2ecfm251583696.runPage(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\event gateway\gateways.cfm:1)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
    at
    coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:175)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
    at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
    at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Caused by: java.lang.ClassNotFoundException:
    coldfusion.flex.CFEventGatewayAdapter
    at
    coldfusion.bootstrap.BootstrapClassLoader.loadClass(BootstrapClassLoader.java:235)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at
    java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    ... 45 more
    at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:70 )
    at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    Someone suggested it could be a serialisation issue but I I'm not sure how to go about checking that.
    Any suggestions ?

  • Cannot find my air play on ipad 2 for ios 7.0.2, please help?

    Cannot find my air play on ipad 2 for ios 7.0.2, please help?

    Hello Rico4444
    Swipe up to bring up Control Center and then it will be towards the bottom next to the brightness controls on your iPad.
    iOS: Using AirPlay
    http://support.apple.com/kb/HT4437
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Air 3.0 multitask features for ios

    Hi,
    My app needs to update it's status to my server, when it goes to background.
    Currently I'm using Air 2.7, and do a curl by listenning deactivate.
    It works fine on Android, but can not finish the curl on ios after home button is pushed(the event is fired, but the curl seems never be executed).
    Is there any way can do this job on ios? How about air 3.0 multitask features for ios?

    I can confirm that defining the UIBackgroundMode for 'audio' allows you to run code while the app is in the background.  I have a similar issue I am trying to solve, but with regards to location.  I need to be able to receive geolocation updates when the app is active, at the home screen, while in another app and when the screen is turned off. I have gotten it to work with all of the cases except for while the screen is off by defining the UIBackgroundmodes for both 'audio' and 'location'.
    To test if code can be run, I have an event listener that gets triggered when the app is deactivated and activated.  I am setting a timer the moment the app gets deactivated and incrementing a varaible every 100 milliseconds while the app is inactive.  When the app becomes active again I report the number back in a debug textfield.  If I press the home button or open another app, the number is accurate to how long the app was inactive for... but as soon as I press the power button to shut the screen off, the number stops incrementing shortly after.
    I have seen plenty of native iOS geolocation-based apps get updates while the screen is off, why is this not the case for an AIR iOS app? Is there a workaround for this? Does someone at Adobe need to fix this issue?  At this point, I'm not even sure Native Extensions would do the trick...
    ANY help would be greatly appreciated.

Maybe you are looking for