Flex Ant SDK giving compile warnings not present in Flex Builder

We have a project when  we complie from Flash Builder 4 it compiles as expected with no errors. However when we do an ANT build on a build machine with no Flash Builder installed, the same code (checked out from SVN) and same Flex SDK we have started to get an error: "Error: Access of possibly undefined property labelName through a reference with static type ..."
If I Run As the ant build from inside eclipse it builds fine and no errors (I verified the SDKs are the same). I can "work around" this by using show-actionscript-warnings="false" in the build.xml file, I'd rather not have to do this.
The error labelName property in the component that is referenced in the error is indeed marked public and it is [Bindable]. In fact the component that it says this error is associated with hasn't changed in a couple months.
Some other info that might be of interest on our system that builds the deploy version:
1. Our build box is running mac os x (10.5.6), Processor: 2GHz Intel Core 2 Duo, Memory: 2GB
2. Flex SDK 4.1A
3. Java version 1.5.0_13
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05-237)
JavaHotSpot(TM) Client VM (build 1.5.0_13-119, mixed mode, sharing)
4. Ant -version: Apache Ant version 1.7.0 compiled on February 29 2008
Any ideas as to what could be causing this "phantom" error in our module? How to fix? Hints or other avenues to pursue?
Thanks,
Mike Weiland

So it turns out I need to overlay the latest SDK into the Flash Builder directory completely, not just the files I was messing with before.
In flex builder, go to the directory where the SDKs are installed.
On my system this is
C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.5\sdks
On a Mac, it might be
/Applications/Adobe Flash Builder 4.5/sdks
There should be a 3.6.0, 4.5.0 and a 4.5.1 present.
Make a copy of the 4.5.1 directory.
Download the AdobeAIRSDK from
Windows -  http://airdownload.adobe.com/air/win/download/latest/AdobeAIRSDK.zip
Mac - not sure what the link is.
Unzip this file, then overlay the contents into the 4.5.1 directory. There are 8 directories, and 2 files. The target 4.5.1 has 10 directories, and 7 files (on my system)
In Flash Builder, project properties need to be tweaked.
The Flex Compiler tab - Check [Use a specific SDK:], and pick Flex 4.5.1 in the dropdown.
And in the Additional compiler arguments add
-swf-version=12
In your code, to use the AEC, pick the Enhanced Microphone, as in
microphone = Microphone.getEnhancedMicrophone();
Now if only I could figure out what all the settings do and which one's I need to tweak for our environment... loads of experimenting.
Mark.

Similar Messages

  • Using Flex 2 SDK to compile for Flash Lite 2.0

    As I understand Flash Lite 2.0 is a stripped down version of
    Flash 7 (that is ActionScript 2.0) with a couple of things added
    for mobile specific things. But is it possible to use the free Flex
    2 SDK to compile a SWF that will run on Flash Lite 2.0 (or Flash 7
    for that matter).
    Zarathrusta

    I'm not familiar with Flash Lite 2.0, so maybe I shouldn't be
    answering this, but I've used the SDK for several projects and I
    believe that like Flex Builder it requires at least Flash 8. So, if
    FL is comparable to Flash 7, I doubt if it would work. Just my
    humble opinion, but hope it helps.
    Later,
    Andy C.(never #)

  • SDK CVI compiler Warnings 64-bit

    It seems I am finding CVI Compiler warnings when compiling 64 Bit applications with SDK. I don't get these warning errors when I compile the same applications for 32 Bit.
    For example the CVI Compiler warning that I just found was found when I used SDK header file: "SetupAPI.h" with the typedef struct: SP_DEVINFO_DATA and SP_DEVICE_INTERFACE_DATA.
    The warning message I got was when I compiled the statements with the SetupAPI.h file included:
    SP_DEVINFO_DATA DeviceInfoData;
    /* warning message */
    DeviceInfoData.cbSize = sizeof(SP_DEVINFO_DATA);
    // Warning: Conversion from 'unsigned __int64' to 'DWORD' might lose data.
    /*warning message*/
    SP_DEVICE_INTERFACE_DATA did = {sizeof(did)};
    // Warning: Conversion from 'unsigned __int64' to 'DWORD' might lose data.
    When I compile these statements in 32-Bit I don't get these errors.
    Of course I can change the "SetupAPI.H" SDK Header supplied by NI but that defeats the whole purpose of why NI would distribute the header file in the first place.

    OK - Milan -
    I think you misunderstood what I was writing about.
    If you look at the SetupAPI.h file that is supplied by NI SDK with CVI 2010 at line 700 with the following typedef  struct:
    // Device information structure (references a device instance
    // that is a member of a device information set)
    typedef struct _SP_DEVINFO_DATA {
        DWORD cbSize;
        GUID  ClassGuid;
        DWORD DevInst;    // DEVINST handle
        ULONG_PTR Reserved;
    } SP_DEVINFO_DATA, *PSP_DEVINFO_DATA;
    The DWORD is defined as
    "typedef unsigned long"
     in cvidef.h (CVI 2010) header file.
    Yes I could change the SetupAPI.h inside the header file to change the type to be __int64 instead so that it works with 64 Bit. However, if other applications that are written for 32 bit will now be impacted if the SetupAPI.h is used with the __int64 data type DWORD.
    So what NI should so everywhere where they define "DWORD" that is used in the SDK they should have a conditional compile to set the type to "typedef __int64" in CVI 64-bit applications and
    "typedef unsigned long" in 32 Bit Applications.

  • [svn] 4001: Adding support for asdoc in flex ant tasks

    Revision: 4001<br />Author:   [email protected]<br />Date:     2008-11-03 13:46:13 -0800 (Mon, 03 Nov 2008)<br /><br />Log Message:<br />-----------<br />Adding support for <asdoc> in flex ant tasks<br /><br />QE Notes: Tests need to be added to the flextasks test suite.<br />Doc Notes: flex tasks documentation should be updated with example for <asdoc> task. <br />Reviewer: Paul<br />Bugs: SDK-9775<br />tests: checkintests<br /><br />Ticket Links:<br />------------<br />    http://bugs.adobe.com/jira/browse/SDK-9775<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/modules/antTasks/flexTasks-internal.tasks<br />    flex/sdk/trunk/modules/antTasks/flexTasks.tasks<br /><br />Added Paths:<br />-----------<br />    flex/sdk/trunk/modules/antTasks/src/flex/ant/AsDocTask.java

    You should use compiler.library-path to include libraries.
    Try the following
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <project basedir="." default="build" name="Project_name">
    <property environment="env"/>
    <property name="FLEX_HOME" value="C:/Program Files/Flex 3.4"/>
    <property name="APP_ROOT" value="./src"/>
    <property name="Project_name.location" value="../Project_name"/>
    <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/>
    <target name="build">
    <mxmlc file="${APP_ROOT}/AdminConsole.mxml">
    <source-path path-element="${FLEX_HOME}/frameworks"/>
    <compiler.library-path>
    <include name="${Project_name.location}/src" />
    </compiler.library-path>
    </mxmlc>
    </target>
    </project>
    Although, I don't know what are you planning to include, and whether you should use compiler.library-path for that.

  • License not present.  With the trial version only limited replays are allowed -- Flex builder 4.5 Premium eclipse plugin with SDK 3.5

    Hi ,
    We are using Flex SDK 3.5 and using eclipse to build the war in order to make it automation compatible , Right now we tried with Premium version of Flex Builder 4.5 eclipse plugging to build and make application automation capable. But we are facing issues in terms of license , After deploying the automation compatible build we are getting error message "License not present.  With the trial version only limited replays are allowed".
    Previously we are using Flex Builder 4.0 and everything was working fine .
    Is Flex Builder 4.5 doesn't support SDK 3.5 ?
    Please help .
    Thanks in advance
    Thanks and Regards
    Sunil Kumar

    with trial version (FB basic) you can record/replay only 30
    script lines. You need to buy FB pro license to remove this
    restriction

  • Flex SDK compiler warnings localization

    Hi, guys.
    Wonder if i can disable localization of compiler warnings, so that sdk compiler won't take system locale (windows) and use english instead?
    Thanx in advance,
    Tim Tekaev

    use in compiler option : -locale en_US

  • Flex build errors and warnings not in English but in Dutch

    Hello Flash Builders,
    I'm using Flash Builder 4 beta and both Flex SDK 3.4 and 4.0 beta 2. The problem I have is pretty annoying. Many error and warning descriptions, which you see in the "Problems" pane in Flash Builder, are in Dutch. Why? I do not know. I never told it to and I can't find anywhere in the settings an option to change it. I did not download the Flex SDK in Dutch, if that's even possible. Unless they forced me to, because they found out I live in Holland I think I would like Dutch compile error descriptions.
    Though I am Dutch, most of the time the Dutch descriptions are fare more difficult to understand than the English versions. And looking up an error when you don't know what it means is also pointless, cause the most common language on the net is ofcourse English and not Dutch.
    Someone knows how to change the language of the compiler error and warning descriptions?
    Any help would be great!
    Many thanks.

    Hi,
    DBNetLib (Database Network Library) errors occur when the BizTalk Server runtime is unable to communicate with either the MessageBox or Management databases. When this occurs, the BizTalk Server runtime instance that catches the exception shuts down and
    then cycles every minute to check to see if the database is available.
    Check if there is any server restart activity happening every night?
    Alternatively, you might need to
    Set the SynAttackProtect registry setting as described in
    http://support.microsoft.com/kb/899599. Additionally,
    look at the Group policy for that SQL server to be sure that the Group Policy does not periodically UNDO the setting change that you did above.
    Refer:
    [DBNETLIB][ConnectionWrite (send()).]General network error. Check your network documentation.
    Other possible causes could be
    1) Low hardware specs (Could be hard disk memory issue, check the free space on the server)
    2) Sharing one server or disk for more than one group of BizTalk databases
    It could also be a network card issue that could we worked around by turning off TCP Chimney using the following command:
    Netsh int ip set chimney DISABLED
    For more information, see
    Microsoft support article 942861.
    Refer for details:
    Avoiding DBNETLIB Exceptions
    Similar issue reported here ->
    BizTalk service stopping automatically.
    Also refer this link and look into the description of Error 6,10 and 11.
    BizTalk - Errors and Warnings, Causes and Solutions 
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Does compiling an advanced datagrid using flex ant task require additional config other than the license property?

    Hi,
        I am trying to build my Flex app which uses the Advanced Data Grid in a couple of locations. Originally, when I built the app using the flex ant tasks, I noticed the Visualization Trial watermark show up on the screen. I then added the license tag with the serial number to my flex-config.xml and re-ran my ant build. The watermark goes away, but then when I look at the advanced datagrid, the datagrid shows up with the hierarchy, but the data does not display in the grid (only the group by nodes are visible, not the data for the leaf elements). This works fine when I build the app using my Flex Builder. Is there something I am missing or need to add to my flex ant task to make this work?
    Any help or guidance is much appreciated.
    The following is the ant task to build the module that uses the ADG:
        <target name="compile-modules" depends="compile-shared">
            <!-- Module 1 -->
            <echo>Compiling module 1...</echo>
            <mxmlc file="${modulesrc.dir}\ui\modules\mod1\Module1.mxml"
                    output="${dist.dir}\modules\mod1\Module1.swf"
                    actionscript-file-encoding="UTF-8"
                    incremental="true"
                    default-background-color="0xFFFFFF"
                    use-network="false"
                    load-externs="${extern-report-xml}">
                <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml" />
                <source-path path-element="${FLEX_HOME}/frameworks"/>
                <!-- source paths -->
                <compiler.source-path path-element="${modulesrc.dir}"/>
                <!-- add external libraries -->
                <compiler.library-path dir="${main.dir}" append="true">
                    <include name="${lib.dir}"/>
                </compiler.library-path>
                <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs" />
                    <include name="locale/{locale}" />
                </compiler.library-path>
                <compiler.debug>true</compiler.debug>
            </mxmlc>
        </target>
    And here is the ant task for the main application:
        <target name="compile-ui" depends="compile-modules">
            <mxmlc file="${src.dir}/MainApp.mxml" output="${dist.dir}/MainApp.swf"
                    actionscript-file-encoding="UTF-8" keep-generated-actionscript="false"
                    fork="true" maxmemory="1024m">
                <jvmarg value="-XX:MaxPermSize=256m"/>
                <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                <source-path path-element="${FLEX_HOME}/frameworks"/>
                <source-path path-element="${src.dir}"/>
                <source-path path-element="${main.dir}/locale/{locale}"/>
                <!-- List of SWC files or directories that contain SWC files. -->
                <!--<compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs" />
                    <include name="locale/{locale}" />
                </compiler.library-path>-->
                <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
                    <include name="libs/datavisualization.swc" />
                    <include name="libs/flex.swc" />
                    <include name="libs/framework.swc" />
                    <include name="libs/rpc.swc" />
                    <include name="libs/utilities.swc" />
                    <include name="locale/{locale}" />
                </compiler.library-path>
                <compiler.library-path dir="${main.dir}" append="true">
                    <include name="${lib.dir}"/>
                </compiler.library-path>
                <runtime-shared-library-path path-element="${FLEX_FRAMEWORK}/framework.swc">
                    <url rsl-url="framework_3.2.0.3958.swf"/>
                    <url rsl-url="framework_3.2.0.3958.swz"/>
                </runtime-shared-library-path>
                <compiler.debug>true</compiler.debug>
            </mxmlc>
        </target>
    Regards,
    Purush

    to remove watermark i have added license key in WEB-INF\flex\license.properties file as key = value

  • [svn:fx-trunk] 16929: Add a [Mixin] class that will register the required class aliases in the event the mxml compiler generation   [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework .

    Revision: 16929
    Revision: 16929
    Author:   [email protected]
    Date:     2010-07-15 07:38:44 -0700 (Thu, 15 Jul 2010)
    Log Message:
    Add a class that will register the required class aliases in the event the mxml compiler generation  [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework.
    Add a reference to this class in the RPCClasses file so it always gets loaded.
    QE notes: Need a remoting and messaging regression test that doesn't use Flex UI.
    Bugs: Watson bug 2638788
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/RPCClasses.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RpcClassAliasInitializer.as

    Great exercise to document the problem like this.  It got me thinking about how an app with modules would be different from an app that does not use modules.  Solution: I moved the dummy reference of PersonPhotoView out to the main application file (as opposed to being inside the module) and it worked.  I've probably been lucky not to have experienced this problem earlier, because for most other entities I have an instance attached to my model which is linked / compiled with the main application.

  • Directory (AIR 3.4) does not contain a Flex SDK

    I had previously downloaded and installed the AIR 3.4 sdk in FB 4.6, but when I try to add it FB 4.7, I get:-
    Diretcory does not contain a Flex SDK
    How do I install the AIR 3.4 sdk into FB 4.7?
    I running on Mac OS X 10.7.4

    For everyone WHO IS ON A MAC and coming to this thread  -- and you're at wits end like I was..
    This is very important...
    This process will work flawless if you follow the steps on:
    http://helpx.adobe.com/x-productkb/multi/how-overlay-air-sdk-flex-sdk.html
    Follow them to a T. Don't drag, don't option copy, put tbz2 into your new sdk folder (step 1 below), do the unpacking from terminal under sudo using tar as the directions tell you to.
    An overview...
    1. Shutdown flash builder first and I highly recommend you backup the original 4.6.0 sdk folder and that you make a new sdk folder called            4.6.0_AIR3.x .. change x to be the version you are merging in. Put the tbz2 AIR file you downloaded from Adobe into this! Then unpack using sudo (plus the tar command they tell you to use in the above link).
    2. Update the <name> key under flex-sdk-description.xml after you unpack. append a (AIR 3.x) so you know what the *** this sdk is. To do this properly, and so you don't have permission issues.. do this from the 'ol command line in terminal. type: sudo nano flex-sdk-description.xml to edit it.
    3. Update your project to use the new SDK only. Project properties -> flex compiler -> Configure Flex SDKs
    4. Update your application namespace! Your project will error until you do! Edit your [myappname]-app.xml to reflect the proper AIR version in that first line that reads: <application xmlns="http://ns.adobe.com/air/application/3.x">
    Follow the steps and you should be golden.
    -Steve

  • SQL developer not showing compiler warnings

    I'm just testing out the new compiler warning contained in 11g related to the "when others" exception handler when it does not have a subsequent raise or raise_application_error.
    in SQL plus, this works fine:
    SQL> alter session set plsql_warnings='enable:all';
    Session altered.
    SQL>
    SQL> create or replace function do_stuff
      2  return number
      3  as
      4     v_return number;
      5  begin
      6
      7     v_return := 3;
      8     return v_return;
      9
    10  exception
    11  when others then
    12     return null;
    13  end;
    14  /
    SP2-0806: Function created with compilation warnings
    SQL> show errors;
    Errors for FUNCTION DO_STUFF:
    LINE/COL ERROR
    1/1      PLW-05018: unit DO_STUFF omitted optional AUTHID clause; default
             value DEFINER used
    11/6     PLW-06009: procedure "DO_STUFF" OTHERS handler does not end in
             RAISE or RAISE_APPLICATION_ERRORbut in SQL developer the output is:
    BANNER                                                                          
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production    
    PL/SQL Release 11.2.0.3.0 - Production                                          
    CORE     11.2.0.3.0     Production                                                        
    TNS for Linux: Version 11.2.0.3.0 - Production                                  
    NLSRTL Version 11.2.0.3.0 - Production                                          
    session SET altered.
    FUNCTION do_stuff compiled
    No Errors.Anyone experience this issue? is there some setting that makes SQL developer behave differently?

    it must be something I'm doing wrong, above, I was running under windows 7 pointing at the version above.
    I just tried it under an Enterprise Linux pointing at
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production          
    PL/SQL Release 11.2.0.2.0 - Production                                          
    CORE     11.2.0.2.0     Production                                                        
    TNS for Linux: Version 11.2.0.2.0 - Production                                  
    NLSRTL Version 11.2.0.2.0 - Production                                           and I get exactly the same script output and no compiler window....
    actually...... if I go into a procedure window from the schema browser and compile it there, then I get the correct warning messages..... the problem is I mostly develop from .sql files extracted from source control rather than directly from the schema browser, I just want the sql worksheet to be able to show me the same compiler log window.....

  • 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)

  • Help with Flex Ant build.xml error

    So I've started on a new project and I'm new to Flex. A lot of learning curve here. Anyway, I'm trying to deploy a project that uses flex and is built with Ant. We've moving up from a version of Flex 2 to Flex 3. The build file works fine in the Flex 2 app but for some reason does not seem to be working with Flex 3. I'm hoping someone can give me some insight on what might be wrong or where to start.
    The error is Command not found: compc
    The part of the build file it has a problem with is:
    <compc include-classes="${classes}"
         ouput="${flex.dist.dir}/${flex.app.name}.swc"
         keep-generated-actionscript="false"
         headless-server="${headless.server}"
         incremental="true">
    <load_config filename="${FLEX_HOME}/frameworks/flex-config.xml" />
    <source-path path-element="${FLEX_HOME}/frameworks" />
    <source-path path-element="${flex.app.root}" />
    <compiler.library-path dir="${FLEX_HOME}/frameworks" append="true">
         <include name="libs" />
         <include name="../bundles/{local}" />
    </compiler.library-path>
    <compiler.library-path dir="${flex.app.root}" appent="true">
         <include name="libs" />
    </compiler.library-path>
    </compc>
    Any help at all would be greatly appreciated, thank you.

    Sorry, I meant to address that. Yes, since we've moved up to the Flex 3 sdk, we are pointing at a new directory. The old directory was flex_sdk and the new directory is flex_sdk_340.
    FLEX_HOME is being set in the build.properties file for local building and then overidden in the build.xml file with this code:
    <target name="build">
         <available property="FLEX_HOME" value="/apps/flex_sdk_340" file="/apps/flex_sdk_340" />
         <echo>FLEX_HOME = ${FLEX_HOME}</echo>
         <antcall target="compile" />
    </target>
    I did notice a warning about not using the available property, so I removed it and just changed what FLEX_HOME was set to in the build.properties file to the server directory. Would mess up local building but regardless it didn't matter because it had no effect on the error being generated. I alos looked a little into the file property of the available tag trying to figure out if that was somehow an issue but I wasn't able to come to any conclusion.
    Before the program errors out, it does displayt he echo statement and the value of FLEX_HOME appears to be correct in that it does show /apps/flex_sdk_340.
    Thank you so much for your continued help. This is truly frustrating because nothing but a directory name has really changed and yet it stopped working. I can't find any information anywhere on what could be wrong and this is really my last resort.

  • License not present. With the trail version only limited replays are allowed... Qtp automation

    Hi All.
             We are doing QTP automation testing for our flex application. But after running all 30 tests it is showing License not present. with the trail version only limited replays are allowed. We are using  flex sdk 3.5 and flash builder 4 plugin for eclipse. we are building our application using ant and we are deploying the application directly and testing it.  Can any one tell Steps to resolve this issue...
              please step by step required..
    Thanks
    Ram

    You need to have valid premium license for Adobe. Only then it would work.

  • Flex Ant Tasks html-wrapper problem

    I'm getting BUILD SUCCESSFUL and an SWF file, but no HTML
    wrapper. Any help is appreciated!
    Apache Ant version 1.7.0 compiled on December 13 2006
    Buildfile:
    C:\Installs\MTCSEWorkspace\MTCSE_WebApp\flex-build.xml
    parsing buildfile
    C:\Installs\MTCSEWorkspace\MTCSE_WebApp\flex-build.xml with URI =
    file:/C:/Installs/MTCSEWorkspace/MTCSE_WebApp/flex-build.xml
    Project base dir set to:
    C:\Installs\MTCSEWorkspace\MTCSE_WebApp
    [antlib:org.apache.tools.ant] Could not load definitions from
    resource org/apache/tools/ant/antlib.xml. It could not be found.
    Build sequence for target(s) `wrapper' is [compile, wrapper]
    Complete build sequence is [compile, wrapper, ]
    compile:
    [mxmlc] Loading configuration file
    C:\Installs\MTCSEStudio\Flex Builder 3
    Plug-in\sdks\2.0.1\frameworks\flex-config.xml
    [mxmlc]
    C:\Installs\MTCSEWorkspace\MTCSE_WebApp\target\MTCSE_WebApp/ValidValueTest.swf
    (592822 bytes)
    wrapper:
    BUILD SUCCESSFUL
    Total time: 18 seconds
    <?xml version="1.0" encoding="utf-8"?>
    <!-- flex-build.xml -->
    <project name="My App Builder" basedir=".">
    <property name="FLEX_HOME"
    value="C:\Installs\MTCSEStudio\Flex Builder 3
    Plug-in\sdks\2.0.1" />
    <property name="ANT_HOME"
    value="C:\Installs\MTCSEStudio\eclipse\plugins\org.apache.ant_1.7.0.v200706080842"
    />
    <property name="MTCSE_WebApp"
    value="C:\Installs\MTCSEWorkspace\MTCSE_WebApp" />
    <property name="DEPLOY_DIR"
    value="C:\Installs\MTCSEWorkspace\MTCSE_WebApp\target\MTCSE_WebApp"
    />
    <taskdef resource="flexTasks.tasks"
    classpath="${ANT_HOME}/lib/flexTasks.jar" />
    <target name="main">
    <mxmlc
    file="${MTCSE_WebApp}/flex_src/ValidValueTest.mxml"
    keep-generated-actionscript="false"
    output="${DEPLOY_DIR}/ValidValueTest.swf">
    <load-config
    filename="${FLEX_HOME}/frameworks/flex-config.xml" />
    <source-path path-element="${FLEX_HOME}/frameworks" />
    </mxmlc>
    <html-wrapper swf="ValidValueTest"
    output="${DEPLOY_DIR}" />
    </target>
    </project>

    Ok, on second inspection, index.html is being generated.
    However, the file attribute is unsupported.
    Using the ant Move task, I was able to accomplish what I
    wanted to do. Thanks!
    <target name="wrapper" depends="compile">
    <html-wrapper swf="ValidValueTest"
    output="${DEPLOY_DIR}" />
    <move file="${DEPLOY_DIR}/index.html"
    tofile="${DEPLOY_DIR}/ValidValueTest.html"/>
    </target>

Maybe you are looking for

  • How can I download files directly to time capsule?

    I currently have time capsule 1TB working wirelessly as a backup for my macbook.  I also would like to use it as an external hard drive.  I can not figure out how to do this even after reviewing the questions on the forum.  I have tried to import vid

  • Acrobat X pro - Problem viewing PDF files in web browser

    I've recently upgraded to the latest Imac and have experianced one or two teething problems with software compatibility with OS X 10.7.1 Lion (most now resolved) My latest issue is viewing online PDF's which appear in my browser as just a blank black

  • PO_HEADERS_INTERFACE error- approval status

    Into PO_HEADERS_INTERFACE I enter 'APPROVAL' in the APPROVAL_STATUS column and have no issue I enter 'CANCELED' and get the PO_PDOI_INVALID_STATUS error message Error: Approval Status specified is invalid. What values are valid here?

  • How to upgrade Mac OS X 10.5.8 to 10.6.8 or higher?

    I recently bought a new iphone 5S and in order to access my current itunes it says I need to update itunes to 11.1. In order to upgrade to 11.1 it needs and OS of 10.6.8. My iMac is only 10.5.8. Can I upgrade this imac's operating system? How?

  • I have to login to sync every time I restart Firefox

    I use Firefox Sync (in Firefox 4.0.1) on two deskcomputers (Apple Mac). I succeeded in setting up an account and syncing everything. But each time I close and re-open Firefox I have to set up Sync again. This includes filling out my sync key. This do