You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@flex.apache.org by L'Hommelet Filip <Fi...@ilias-solutions.com> on 2015/05/28 17:02:11 UTC

Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

There I was, thinking all was well...
Application builds in FB, runs locally.
Application builds completely in Maven (thank you Chris).

Application gets deployed to server after being packaged (just like we did before when on SDK4.1)
and when I run the application I get this error:

VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Followed by a bunch of other errors in the same genre.
We deploy on a weblogic.
I checked our EAR file and in the war that contains our app, there is a rsls-subfolder that contains all apache-framework related stuff
so in that regard, the file we upload looks pretty identical to the one we uploaded when still on SDK4.1 and FlexMojo3.8.

So I'm getting a feeling something is going wrong during compilation by maven.

Any ideas where I should start look first?

Kr,
Filip

RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
What will that change?  Is this in regard to the VerifyError: Error #1014: Class mx.core::UIComponent could not be found. 
Or the Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Because those two are both fixed with this pom setup :-)
Having issues now compiling a css to an swf

-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de] 
Sent: woensdag 3 juni 2015 14:04
To: users@flex.apache.org
Subject: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Try adding the stuff from the parent behind your last rsl and changing the rb.swc dependencies to compile scope.

Chris

Gesendet mit meinem HTC

----- Reply message -----
Von: "L'Hommelet Filip" <Fi...@ilias-solutions.com>
An: "users@flex.apache.org" <us...@flex.apache.org>
Betreff: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
Datum: Mi., Juni 3, 2015 13:31

My parent-pom contains this:

<dependencies>
                <dependency>
                        <groupId>com.adobe.flash.framework</groupId>
                        <artifactId>playerglobal</artifactId>
                        <version>${player.version}</version>
                        <type>swc</type>
                </dependency>
                <dependency>
            <groupId>org.apache.flex</groupId>
            <artifactId>framework</artifactId>
                        <version>${flex.version}</version>
            <type>pom</type>
        </dependency>
        </dependencies>


My project pom this:

<dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>sparkskins</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark_dmv</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>authoringsupport</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>core</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>experimental</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>flatspark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>internal</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>

                <dependency>
                        <optional>true</optional>
                        <groupId>org.apache.flex.framework.themes</groupId>
                        <artifactId>spark</artifactId>
                        <version>${flex.version}</version>
                        <type>swc</type>
                        <scope>theme</scope>
                </dependency>



-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de]
Sent: woensdag 3 juni 2015 12:27
To: users@flex.apache.org
Subject: AW: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Filip,

so what exactly did you change? I know the order of dependencies can be important and they do have an effect on the generated config file. For example if you import the framework:pom first and then the individual parts of the fdk as "rsls" then maven will use the first scope which will be "compile".

That's why when doing rsls I usually add all the rsls first and then all the non-rsl dependencies.

Chris

________________________________________
Von: L'Hommelet Filip <Fi...@ilias-solutions.com>
Gesendet: Mittwoch, 3. Juni 2015 09:58
An: users@flex.apache.org
Betreff: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hey Alex!

So I redeployed with the order that I have written down here and lo and behold, no more UIComponent error ...
Now I've got new errors but those are related to our own modules ;-)

Thanx for many helps! But man, this switch to 4.14.1 is a real PITA :D

Kr,
Filip

-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
Sent: woensdag 3 juni 2015 8:41
To: users@flex.apache.org
Subject: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Alex,

This is my output of a maven build:

Writing configuration dump to D:\I3G\git-workspaces\flex\wp-nato-47\testproject\target\testproject-1.0-configs.xml
Required RSLs:
    framework-swc/library.swf
    textLayout-swc/library.swf
    spark-swc/library.swf
    sparkskins-swc/library.swf
    charts-swc/library.swf
    mx-swc/library.swf
    advancedgrids-swc/library.swf
    core-swc/library.swf

trying to get an output from mxmlc but not sure which flag I need to set on the compiler.

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com]
Sent: woensdag 3 juni 2015 8:16
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.



On 6/2/15, 10:58 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Hey Alex,
>
>I take it you received my dump-file? :-)
>
>This is how I have my dependencies ordered:

I don't know enough about Maven to know if this is right or wrong.  I'm not sure if Chris is saying some Maven issue is affecting this as well.
In theory, the compiler should take this list of SWCs in any order and compute the right order in the list that goes in the SWF.  That's what I saw in the dump.

If you take my little test file and build it with Maven, do you also get AdvancedGrids and Charts before framework.swc?  If you have a non-Maven Flex SDK and use mxmlc to compile my little test file do you see the RSLs with framework.swc first?  That's what I get.

-Alex


AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Christofer Dutz <ch...@c-ware.de>.
Try adding the stuff from the parent behind your last rsl and changing the rb.swc dependencies to compile scope.

Chris

Gesendet mit meinem HTC

----- Reply message -----
Von: "L'Hommelet Filip" <Fi...@ilias-solutions.com>
An: "users@flex.apache.org" <us...@flex.apache.org>
Betreff: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
Datum: Mi., Juni 3, 2015 13:31

My parent-pom contains this:

<dependencies>
                <dependency>
                        <groupId>com.adobe.flash.framework</groupId>
                        <artifactId>playerglobal</artifactId>
                        <version>${player.version}</version>
                        <type>swc</type>
                </dependency>
                <dependency>
            <groupId>org.apache.flex</groupId>
            <artifactId>framework</artifactId>
                        <version>${flex.version}</version>
            <type>pom</type>
        </dependency>
        </dependencies>


My project pom this:

<dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>sparkskins</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark_dmv</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>authoringsupport</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>core</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>experimental</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>flatspark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>internal</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>

                <dependency>
                        <optional>true</optional>
                        <groupId>org.apache.flex.framework.themes</groupId>
                        <artifactId>spark</artifactId>
                        <version>${flex.version}</version>
                        <type>swc</type>
                        <scope>theme</scope>
                </dependency>



-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de]
Sent: woensdag 3 juni 2015 12:27
To: users@flex.apache.org
Subject: AW: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Filip,

so what exactly did you change? I know the order of dependencies can be important and they do have an effect on the generated config file. For example if you import the framework:pom first and then the individual parts of the fdk as "rsls" then maven will use the first scope which will be "compile".

That's why when doing rsls I usually add all the rsls first and then all the non-rsl dependencies.

Chris

________________________________________
Von: L'Hommelet Filip <Fi...@ilias-solutions.com>
Gesendet: Mittwoch, 3. Juni 2015 09:58
An: users@flex.apache.org
Betreff: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hey Alex!

So I redeployed with the order that I have written down here and lo and behold, no more UIComponent error ...
Now I've got new errors but those are related to our own modules ;-)

Thanx for many helps! But man, this switch to 4.14.1 is a real PITA :D

Kr,
Filip

-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
Sent: woensdag 3 juni 2015 8:41
To: users@flex.apache.org
Subject: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Alex,

This is my output of a maven build:

Writing configuration dump to D:\I3G\git-workspaces\flex\wp-nato-47\testproject\target\testproject-1.0-configs.xml
Required RSLs:
    framework-swc/library.swf
    textLayout-swc/library.swf
    spark-swc/library.swf
    sparkskins-swc/library.swf
    charts-swc/library.swf
    mx-swc/library.swf
    advancedgrids-swc/library.swf
    core-swc/library.swf

trying to get an output from mxmlc but not sure which flag I need to set on the compiler.

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com]
Sent: woensdag 3 juni 2015 8:16
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.



On 6/2/15, 10:58 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Hey Alex,
>
>I take it you received my dump-file? :-)
>
>This is how I have my dependencies ordered:

I don't know enough about Maven to know if this is right or wrong.  I'm not sure if Chris is saying some Maven issue is affecting this as well.
In theory, the compiler should take this list of SWCs in any order and compute the right order in the list that goes in the SWF.  That's what I saw in the dump.

If you take my little test file and build it with Maven, do you also get AdvancedGrids and Charts before framework.swc?  If you have a non-Maven Flex SDK and use mxmlc to compile my little test file do you see the RSLs with framework.swc first?  That's what I get.

-Alex


RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
My parent-pom contains this:

<dependencies>
		<dependency>
			<groupId>com.adobe.flash.framework</groupId>
			<artifactId>playerglobal</artifactId>
			<version>${player.version}</version>
			<type>swc</type>
		</dependency>
		<dependency>
            <groupId>org.apache.flex</groupId>
            <artifactId>framework</artifactId>
			<version>${flex.version}</version>
            <type>pom</type>
        </dependency>
	</dependencies>


My project pom this:

<dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>sparkskins</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark_dmv</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>  
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>authoringsupport</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>core</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>experimental</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>flatspark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>internal</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>

		<dependency>
			<optional>true</optional>
			<groupId>org.apache.flex.framework.themes</groupId>
			<artifactId>spark</artifactId>
			<version>${flex.version}</version>
			<type>swc</type>
			<scope>theme</scope>
		</dependency>



-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de] 
Sent: woensdag 3 juni 2015 12:27
To: users@flex.apache.org
Subject: AW: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Filip, 

so what exactly did you change? I know the order of dependencies can be important and they do have an effect on the generated config file. For example if you import the framework:pom first and then the individual parts of the fdk as "rsls" then maven will use the first scope which will be "compile". 

That's why when doing rsls I usually add all the rsls first and then all the non-rsl dependencies.

Chris

________________________________________
Von: L'Hommelet Filip <Fi...@ilias-solutions.com>
Gesendet: Mittwoch, 3. Juni 2015 09:58
An: users@flex.apache.org
Betreff: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hey Alex!

So I redeployed with the order that I have written down here and lo and behold, no more UIComponent error ...
Now I've got new errors but those are related to our own modules ;-)

Thanx for many helps! But man, this switch to 4.14.1 is a real PITA :D

Kr,
Filip

-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
Sent: woensdag 3 juni 2015 8:41
To: users@flex.apache.org
Subject: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Alex,

This is my output of a maven build:

Writing configuration dump to D:\I3G\git-workspaces\flex\wp-nato-47\testproject\target\testproject-1.0-configs.xml
Required RSLs:
    framework-swc/library.swf
    textLayout-swc/library.swf
    spark-swc/library.swf
    sparkskins-swc/library.swf
    charts-swc/library.swf
    mx-swc/library.swf
    advancedgrids-swc/library.swf
    core-swc/library.swf

trying to get an output from mxmlc but not sure which flag I need to set on the compiler.

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com]
Sent: woensdag 3 juni 2015 8:16
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.



On 6/2/15, 10:58 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Hey Alex,
>
>I take it you received my dump-file? :-)
>
>This is how I have my dependencies ordered:

I don't know enough about Maven to know if this is right or wrong.  I'm not sure if Chris is saying some Maven issue is affecting this as well.
In theory, the compiler should take this list of SWCs in any order and compute the right order in the list that goes in the SWF.  That's what I saw in the dump.

If you take my little test file and build it with Maven, do you also get AdvancedGrids and Charts before framework.swc?  If you have a non-Maven Flex SDK and use mxmlc to compile my little test file do you see the RSLs with framework.swc first?  That's what I get.

-Alex


AW: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Christofer Dutz <ch...@c-ware.de>.
Hi Filip, 

so what exactly did you change? I know the order of dependencies can be important and they do have an effect on the generated config file. For example if you import the framework:pom first and then the individual parts of the fdk as "rsls" then maven will use the first scope which will be "compile". 

That's why when doing rsls I usually add all the rsls first and then all the non-rsl dependencies.

Chris

________________________________________
Von: L'Hommelet Filip <Fi...@ilias-solutions.com>
Gesendet: Mittwoch, 3. Juni 2015 09:58
An: users@flex.apache.org
Betreff: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hey Alex!

So I redeployed with the order that I have written down here and lo and behold, no more UIComponent error ...
Now I've got new errors but those are related to our own modules ;-)

Thanx for many helps! But man, this switch to 4.14.1 is a real PITA :D

Kr,
Filip

-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
Sent: woensdag 3 juni 2015 8:41
To: users@flex.apache.org
Subject: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Alex,

This is my output of a maven build:

Writing configuration dump to D:\I3G\git-workspaces\flex\wp-nato-47\testproject\target\testproject-1.0-configs.xml
Required RSLs:
    framework-swc/library.swf
    textLayout-swc/library.swf
    spark-swc/library.swf
    sparkskins-swc/library.swf
    charts-swc/library.swf
    mx-swc/library.swf
    advancedgrids-swc/library.swf
    core-swc/library.swf

trying to get an output from mxmlc but not sure which flag I need to set on the compiler.

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com]
Sent: woensdag 3 juni 2015 8:16
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.



On 6/2/15, 10:58 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Hey Alex,
>
>I take it you received my dump-file? :-)
>
>This is how I have my dependencies ordered:

I don’t know enough about Maven to know if this is right or wrong.  I’m not sure if Chris is saying some Maven issue is affecting this as well.
In theory, the compiler should take this list of SWCs in any order and compute the right order in the list that goes in the SWF.  That’s what I saw in the dump.

If you take my little test file and build it with Maven, do you also get AdvancedGrids and Charts before framework.swc?  If you have a non-Maven Flex SDK and use mxmlc to compile my little test file do you see the RSLs with framework.swc first?  That’s what I get.

-Alex


RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
Hey Alex!

So I redeployed with the order that I have written down here and lo and behold, no more UIComponent error ...
Now I've got new errors but those are related to our own modules ;-)

Thanx for many helps! But man, this switch to 4.14.1 is a real PITA :D

Kr,
Filip

-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com] 
Sent: woensdag 3 juni 2015 8:41
To: users@flex.apache.org
Subject: RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi Alex,

This is my output of a maven build:

Writing configuration dump to D:\I3G\git-workspaces\flex\wp-nato-47\testproject\target\testproject-1.0-configs.xml
Required RSLs:
    framework-swc/library.swf
    textLayout-swc/library.swf
    spark-swc/library.swf
    sparkskins-swc/library.swf
    charts-swc/library.swf
    mx-swc/library.swf
    advancedgrids-swc/library.swf
    core-swc/library.swf

trying to get an output from mxmlc but not sure which flag I need to set on the compiler.

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com] 
Sent: woensdag 3 juni 2015 8:16
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.



On 6/2/15, 10:58 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Hey Alex,
>
>I take it you received my dump-file? :-)
>
>This is how I have my dependencies ordered:

I don’t know enough about Maven to know if this is right or wrong.  I’m not sure if Chris is saying some Maven issue is affecting this as well.
In theory, the compiler should take this list of SWCs in any order and compute the right order in the list that goes in the SWF.  That’s what I saw in the dump.  

If you take my little test file and build it with Maven, do you also get AdvancedGrids and Charts before framework.swc?  If you have a non-Maven Flex SDK and use mxmlc to compile my little test file do you see the RSLs with framework.swc first?  That’s what I get.

-Alex


RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
Hi Alex,

This is my output of a maven build:

Writing configuration dump to D:\I3G\git-workspaces\flex\wp-nato-47\testproject\target\testproject-1.0-configs.xml
Required RSLs:
    framework-swc/library.swf
    textLayout-swc/library.swf
    spark-swc/library.swf
    sparkskins-swc/library.swf
    charts-swc/library.swf
    mx-swc/library.swf
    advancedgrids-swc/library.swf
    core-swc/library.swf

trying to get an output from mxmlc but not sure which flag I need to set on the compiler.

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com] 
Sent: woensdag 3 juni 2015 8:16
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.



On 6/2/15, 10:58 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Hey Alex,
>
>I take it you received my dump-file? :-)
>
>This is how I have my dependencies ordered:

I don’t know enough about Maven to know if this is right or wrong.  I’m not sure if Chris is saying some Maven issue is affecting this as well.
In theory, the compiler should take this list of SWCs in any order and compute the right order in the list that goes in the SWF.  That’s what I saw in the dump.  

If you take my little test file and build it with Maven, do you also get AdvancedGrids and Charts before framework.swc?  If you have a non-Maven Flex SDK and use mxmlc to compile my little test file do you see the RSLs with framework.swc first?  That’s what I get.

-Alex


Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Alex Harui <ah...@adobe.com>.

On 6/2/15, 10:58 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Hey Alex,
>
>I take it you received my dump-file? :-)
>
>This is how I have my dependencies ordered:

I don’t know enough about Maven to know if this is right or wrong.  I’m
not sure if Chris is saying some Maven issue is affecting this as well.
In theory, the compiler should take this list of SWCs in any order and
compute the right order in the list that goes in the SWF.  That’s what I
saw in the dump.  

If you take my little test file and build it with Maven, do you also get
AdvancedGrids and Charts before framework.swc?  If you have a non-Maven
Flex SDK and use mxmlc to compile my little test file do you see the RSLs
with framework.swc first?  That’s what I get.

-Alex


RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
Hey Alex,

I take it you received my dump-file? :-)

This is how I have my dependencies ordered:


This is how I defined my framework dependencies:

		<dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>internal</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>sparkskins</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark_dmv</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>  
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>authoringsupport</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>core</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>experimental</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>flatspark</artifactId>
            <version>${flex.version}</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>framework</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>internal</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>textLayout</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>spark</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>rpc</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>charts</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>mx</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>advancedgrids</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>
        <dependency>
            <groupId>org.apache.flex.framework</groupId>
            <artifactId>apache</artifactId>
            <version>${flex.version}</version>
            <type>rb.swc</type>
            <scope>rsl</scope>
            <classifier>en_US</classifier>
        </dependency>

		<dependency>
			<optional>true</optional>
			<groupId>org.apache.flex.framework.themes</groupId>
			<artifactId>spark</artifactId>
			<version>${flex.version}</version>
			<type>swc</type>
			<scope>theme</scope>
		</dependency>

Not sure how to reproduce your test?  Do you want me to make a new project or...?

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com] 
Sent: dinsdag 2 juni 2015 18:34
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Hi,

I think the problem is that the RSLs are in the wrong order.  I could certainly be wrong.  I’m not quite sure how that’s possible, but the list of RSLs you gave a few posts ago:

./rsls/advancedgrids_4.14.1.swf
./rsls/charts_4.14.1.swf
./rsls/core_4.14.1.swf
./rsls/framework_4.14.1.swf
./rsls/rpc_4.14.1.swf
./rsls/spark_4.14.1.swf
./rsls/sparkskins_4.14.1.swf
./rsls/textLayout_4.14.1.swf
./rsls/mx_4.14.1.swf
etc.

appears to be the order the RSLs will be requested by the SWF.  I think the VerifyError is when advancedgrids loads and can’t find UIComponent.  A simple test for me like the following:


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
minHeight="600">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:AdvancedDataGrid />
    <mx:PieChart />
</s:Application>

Gives me (for 4.6) the order:


Required RSLs:
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.
swz with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz
with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz
with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201
.swz with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz
 with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz
with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23
201.swz with 1 failover.

Try the same test I just did and see what order you get.

-Alex


On 6/1/15, 11:55 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>You've got mail!
>Thanks in advance for any help you provide! :D
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 8:37
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Yes, that’s ok.  I’m done for tonight. I will look during my next work 
>day.
>
>-Alex
>
>On 6/1/15, 10:14 PM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Alex
>>
>>Not sure if the policies of the company allow me to post this on a 
>>public mailing list.
>>Any chance I can mail you the output directly?
>>I've got a 2MB large file now.
>>
>>Kr,
>>Filip
>>
>>-----Original Message-----
>>From: Alex Harui [mailto:aharui@adobe.com]
>>Sent: dinsdag 2 juni 2015 0:12
>>To: users@flex.apache.org
>>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Can you post a "swfdump -abc” of your swf?  Don’t do it if you don’t 
>>want to expose the disassembly of the SWF.
>>
>>-Alex
>>
>>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
>><Fi...@ilias-solutions.com> wrote:
>>
>>>Yes, that is how I fixed the "unable to resolve" issue..
>>>
>>>However, still getting the runtime errors for uicomponent.
>>>
>>>I'm at a loss here.. So close!
>>>Only thing I can think of at the moment is that my dependencies are 
>>>incorrectly ordered... But man, what is the correct order then?
>>>
>>>_____________________________
>>>From: Christofer Dutz
>>><ch...@c-ware.de>>
>>>Sent: Sunday, May 31, 2015 9:48 am
>>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>To: <us...@flex.apache.org>>
>>>
>>>
>>>Actually this problem is a real PITA. With Maven 3.1 they have fixed 
>>>a "bug" in Maven that we have been relying on.
>>>Initially when having an atypical dependency scope such as "rsl" or 
>>>"caching" all transitive dependencies were included.
>>>We were using this for automatically adding the resource bundles. 
>>>Since Maven 3.1 transitive dependencies are no longer resolved if the 
>>>scope is unknown. I have already found the extension point for this, 
>>>but if I want to resolve this issue I will have to extends Maven and 
>>>not fix anything in Flex or Flexmojos.
>>>
>>>My current solution was to add the compile time deps to the resource 
>>>bundles manually for each referenced RSL.
>>>
>>>Chris
>>>
>>>-----Ursprüngliche Nachricht-----
>>>Von: Alex Harui [mailto:aharui@adobe.com]
>>>Gesendet: Freitag, 29. Mai 2015 17:26
>>>An: users@flex.apache.org<ma...@flex.apache.org>
>>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Don’t know much about Maven, but essentially this means that the 
>>>locale/en_US folder is not in the library-path or the _rb.swc files 
>>>are missing in those folders.
>>>
>>>-Alex
>>>
>>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-s
>>>ol
>>>uti
>>>ons.com>> wrote:
>>>
>>>>I managed to get a bit further now.
>>>>
>>>>Added the framework swfs dependency separately in the pom so that 
>>>>now in my -configs.xml I have them nicely added to 
>>>><runtime-shared-library-path>
>>>>
>>>>In the output when running maven clean install, I now get Required
>>>>RSLs:
>>>> ./rsls/advancedgrids_4.14.1.swf
>>>> ./rsls/charts_4.14.1.swf
>>>> ./rsls/core_4.14.1.swf
>>>> ./rsls/framework_4.14.1.swf
>>>> ./rsls/rpc_4.14.1.swf
>>>> ./rsls/spark_4.14.1.swf
>>>> ./rsls/sparkskins_4.14.1.swf
>>>> ./rsls/textLayout_4.14.1.swf
>>>> ./rsls/mx_4.14.1.swf
>>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>>
>>>>Which seems like an ok thing now :D
>>>>However, now I'm getting the dreaded
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "containers" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>
>>>>And the list goes on for a while...
>>>>Grrrrrrr!!
>>>>:)
>>>>_______________________________________
>>>>
>>>>Filip L'Hommelet
>>>>Software Development
>>>>
>>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>>
>>>>ILIAS Solutions
>>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>>B-1130 Brussels, BELGIUM
>>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>>Web www.ilias-solutions.com<http://www.ilias-solutions.com>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: vrijdag 29 mei 2015 8:20
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>Could this be because I'm missing the swz-files for the framework?
>>>>We used to have them for SDK4.1 and as I've been reading up on 
>>>>swc/swf/swz, swz are needed if you want to include your library at 
>>>>runtime?
>>>>Any light-shedding on this is welcome because I'm really at a loss 
>>>>now...
>>>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: donderdag 28 mei 2015 17:02
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>There I was, thinking all was well...
>>>>Application builds in FB, runs locally.
>>>>Application builds completely in Maven (thank you Chris).
>>>>
>>>>Application gets deployed to server after being packaged (just like 
>>>>we did before when on SDK4.1) and when I run the application I get 
>>>>this
>>>>error:
>>>>
>>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be 
>>>>found.
>>>>
>>>>Followed by a bunch of other errors in the same genre.
>>>>We deploy on a weblogic.
>>>>I checked our EAR file and in the war that contains our app, there 
>>>>is a rsls-subfolder that contains all apache-framework related stuff 
>>>>so in that regard, the file we upload looks pretty identical to the 
>>>>one we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>>
>>>>So I'm getting a feeling something is going wrong during compilation 
>>>>by maven.
>>>>
>>>>Any ideas where I should start look first?
>>>>
>>>>Kr,
>>>>Filip
>>>
>>>
>>>
>>
>


RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
I posted another nice issue for you on the list ;)

-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de] 
Sent: woensdag 3 juni 2015 12:23
To: users@flex.apache.org
Subject: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Ah ... ok ... sorry ... I must have skipped that info :-)

Chris

________________________________________
Von: L'Hommelet Filip <Fi...@ilias-solutions.com>
Gesendet: Mittwoch, 3. Juni 2015 07:56
An: users@flex.apache.org
Betreff: RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Chris,
That issue was already resolved, I added the  rb dependencies and so I no longer got the unable to resolve error.
Still however getting the runtime error that UIComponent could not be found (amongst others).

-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de]
Sent: dinsdag 2 juni 2015 18:58
To: users@flex.apache.org
Subject: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Did you have a look at my reply a few posts ago?

Chris

Gesendet mit meinem HTC

----- Reply message -----
Von: "Alex Harui" <ah...@adobe.com>
An: "users@flex.apache.org" <us...@flex.apache.org>
Betreff: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
Datum: Di., Juni 2, 2015 18:34

Hi,

I think the problem is that the RSLs are in the wrong order.  I could certainly be wrong.  I'm not quite sure how that's possible, but the list of RSLs you gave a few posts ago:

./rsls/advancedgrids_4.14.1.swf
./rsls/charts_4.14.1.swf
./rsls/core_4.14.1.swf
./rsls/framework_4.14.1.swf
./rsls/rpc_4.14.1.swf
./rsls/spark_4.14.1.swf
./rsls/sparkskins_4.14.1.swf
./rsls/textLayout_4.14.1.swf
./rsls/mx_4.14.1.swf
etc.

appears to be the order the RSLs will be requested by the SWF.  I think the VerifyError is when advancedgrids loads and can't find UIComponent.  A simple test for me like the following:


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
minHeight="600">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:AdvancedDataGrid />
    <mx:PieChart />
</s:Application>

Gives me (for 4.6) the order:


Required RSLs:

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.
swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201
.swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz
 with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23
201.swz with 1 failover.

Try the same test I just did and see what order you get.

-Alex


On 6/1/15, 11:55 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>You've got mail!
>Thanks in advance for any help you provide! :D
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 8:37
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Yes, that's ok.  I'm done for tonight. I will look during my next work 
>day.
>
>-Alex
>
>On 6/1/15, 10:14 PM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Alex
>>
>>Not sure if the policies of the company allow me to post this on a 
>>public mailing list.
>>Any chance I can mail you the output directly?
>>I've got a 2MB large file now.
>>
>>Kr,
>>Filip
>>
>>-----Original Message-----
>>From: Alex Harui [mailto:aharui@adobe.com]
>>Sent: dinsdag 2 juni 2015 0:12
>>To: users@flex.apache.org
>>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Can you post a "swfdump -abc" of your swf?  Don't do it if you don't 
>>want to expose the disassembly of the SWF.
>>
>>-Alex
>>
>>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
>><Fi...@ilias-solutions.com> wrote:
>>
>>>Yes, that is how I fixed the "unable to resolve" issue..
>>>
>>>However, still getting the runtime errors for uicomponent.
>>>
>>>I'm at a loss here.. So close!
>>>Only thing I can think of at the moment is that my dependencies are 
>>>incorrectly ordered... But man, what is the correct order then?
>>>
>>>_____________________________
>>>From: Christofer Dutz
>>><ch...@c-ware.de>>
>>>Sent: Sunday, May 31, 2015 9:48 am
>>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>To: <us...@flex.apache.org>>
>>>
>>>
>>>Actually this problem is a real PITA. With Maven 3.1 they have fixed 
>>>a "bug" in Maven that we have been relying on.
>>>Initially when having an atypical dependency scope such as "rsl" or 
>>>"caching" all transitive dependencies were included.
>>>We were using this for automatically adding the resource bundles.
>>>Since Maven 3.1 transitive dependencies are no longer resolved if the 
>>>scope is unknown. I have already found the extension point for this, 
>>>but if I want to resolve this issue I will have to extends Maven and 
>>>not fix anything in Flex or Flexmojos.
>>>
>>>My current solution was to add the compile time deps to the resource 
>>>bundles manually for each referenced RSL.
>>>
>>>Chris
>>>
>>>-----Ursprüngliche Nachricht-----
>>>Von: Alex Harui [mailto:aharui@adobe.com]
>>>Gesendet: Freitag, 29. Mai 2015 17:26
>>>An: users@flex.apache.org<ma...@flex.apache.org>
>>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Don't know much about Maven, but essentially this means that the 
>>>locale/en_US folder is not in the library-path or the _rb.swc files 
>>>are missing in those folders.
>>>
>>>-Alex
>>>
>>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-s
>>>ol
>>>uti
>>>ons.com>> wrote:
>>>
>>>>I managed to get a bit further now.
>>>>
>>>>Added the framework swfs dependency separately in the pom so that 
>>>>now in my -configs.xml I have them nicely added to 
>>>><runtime-shared-library-path>
>>>>
>>>>In the output when running maven clean install, I now get Required
>>>>RSLs:
>>>> ./rsls/advancedgrids_4.14.1.swf
>>>> ./rsls/charts_4.14.1.swf
>>>> ./rsls/core_4.14.1.swf
>>>> ./rsls/framework_4.14.1.swf
>>>> ./rsls/rpc_4.14.1.swf
>>>> ./rsls/spark_4.14.1.swf
>>>> ./rsls/sparkskins_4.14.1.swf
>>>> ./rsls/textLayout_4.14.1.swf
>>>> ./rsls/mx_4.14.1.swf
>>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>>
>>>>Which seems like an ok thing now :D
>>>>However, now I'm getting the dreaded
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "containers" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>
>>>>And the list goes on for a while...
>>>>Grrrrrrr!!
>>>>:)
>>>>_______________________________________
>>>>
>>>>Filip L'Hommelet
>>>>Software Development
>>>>
>>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>>
>>>>ILIAS Solutions
>>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>>B-1130 Brussels, BELGIUM
>>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>>Web
>>>>www.ilias-solutions.com<http://www.ilias-solutions.com<http://www.il
>>>>ias-solutions.com<http://www.ilias-solutions.com>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: vrijdag 29 mei 2015 8:20
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>Could this be because I'm missing the swz-files for the framework?
>>>>We used to have them for SDK4.1 and as I've been reading up on 
>>>>swc/swf/swz, swz are needed if you want to include your library at 
>>>>runtime?
>>>>Any light-shedding on this is welcome because I'm really at a loss 
>>>>now...
>>>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: donderdag 28 mei 2015 17:02
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>There I was, thinking all was well...
>>>>Application builds in FB, runs locally.
>>>>Application builds completely in Maven (thank you Chris).
>>>>
>>>>Application gets deployed to server after being packaged (just like 
>>>>we did before when on SDK4.1) and when I run the application I get 
>>>>this
>>>>error:
>>>>
>>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be 
>>>>found.
>>>>
>>>>Followed by a bunch of other errors in the same genre.
>>>>We deploy on a weblogic.
>>>>I checked our EAR file and in the war that contains our app, there 
>>>>is a rsls-subfolder that contains all apache-framework related stuff 
>>>>so in that regard, the file we upload looks pretty identical to the 
>>>>one we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>>
>>>>So I'm getting a feeling something is going wrong during compilation 
>>>>by maven.
>>>>
>>>>Any ideas where I should start look first?
>>>>
>>>>Kr,
>>>>Filip
>>>
>>>
>>>
>>
>


AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Christofer Dutz <ch...@c-ware.de>.
Ah ... ok ... sorry ... I must have skipped that info :-)

Chris

________________________________________
Von: L'Hommelet Filip <Fi...@ilias-solutions.com>
Gesendet: Mittwoch, 3. Juni 2015 07:56
An: users@flex.apache.org
Betreff: RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Chris,
That issue was already resolved, I added the  rb dependencies and so I no longer got the unable to resolve error.
Still however getting the runtime error that UIComponent could not be found (amongst others).

-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de]
Sent: dinsdag 2 juni 2015 18:58
To: users@flex.apache.org
Subject: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Did you have a look at my reply a few posts ago?

Chris

Gesendet mit meinem HTC

----- Reply message -----
Von: "Alex Harui" <ah...@adobe.com>
An: "users@flex.apache.org" <us...@flex.apache.org>
Betreff: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
Datum: Di., Juni 2, 2015 18:34

Hi,

I think the problem is that the RSLs are in the wrong order.  I could certainly be wrong.  I'm not quite sure how that's possible, but the list of RSLs you gave a few posts ago:

./rsls/advancedgrids_4.14.1.swf
./rsls/charts_4.14.1.swf
./rsls/core_4.14.1.swf
./rsls/framework_4.14.1.swf
./rsls/rpc_4.14.1.swf
./rsls/spark_4.14.1.swf
./rsls/sparkskins_4.14.1.swf
./rsls/textLayout_4.14.1.swf
./rsls/mx_4.14.1.swf
etc.

appears to be the order the RSLs will be requested by the SWF.  I think the VerifyError is when advancedgrids loads and can't find UIComponent.  A simple test for me like the following:


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
minHeight="600">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:AdvancedDataGrid />
    <mx:PieChart />
</s:Application>

Gives me (for 4.6) the order:


Required RSLs:

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.
swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201
.swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz
 with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23
201.swz with 1 failover.

Try the same test I just did and see what order you get.

-Alex


On 6/1/15, 11:55 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>You've got mail!
>Thanks in advance for any help you provide! :D
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 8:37
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Yes, that's ok.  I'm done for tonight. I will look during my next work
>day.
>
>-Alex
>
>On 6/1/15, 10:14 PM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Alex
>>
>>Not sure if the policies of the company allow me to post this on a
>>public mailing list.
>>Any chance I can mail you the output directly?
>>I've got a 2MB large file now.
>>
>>Kr,
>>Filip
>>
>>-----Original Message-----
>>From: Alex Harui [mailto:aharui@adobe.com]
>>Sent: dinsdag 2 juni 2015 0:12
>>To: users@flex.apache.org
>>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Can you post a "swfdump -abc" of your swf?  Don't do it if you don't
>>want to expose the disassembly of the SWF.
>>
>>-Alex
>>
>>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
>><Fi...@ilias-solutions.com> wrote:
>>
>>>Yes, that is how I fixed the "unable to resolve" issue..
>>>
>>>However, still getting the runtime errors for uicomponent.
>>>
>>>I'm at a loss here.. So close!
>>>Only thing I can think of at the moment is that my dependencies are
>>>incorrectly ordered... But man, what is the correct order then?
>>>
>>>_____________________________
>>>From: Christofer Dutz
>>><ch...@c-ware.de>>
>>>Sent: Sunday, May 31, 2015 9:48 am
>>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>To: <us...@flex.apache.org>>
>>>
>>>
>>>Actually this problem is a real PITA. With Maven 3.1 they have fixed
>>>a "bug" in Maven that we have been relying on.
>>>Initially when having an atypical dependency scope such as "rsl" or
>>>"caching" all transitive dependencies were included.
>>>We were using this for automatically adding the resource bundles.
>>>Since Maven 3.1 transitive dependencies are no longer resolved if the
>>>scope is unknown. I have already found the extension point for this,
>>>but if I want to resolve this issue I will have to extends Maven and
>>>not fix anything in Flex or Flexmojos.
>>>
>>>My current solution was to add the compile time deps to the resource
>>>bundles manually for each referenced RSL.
>>>
>>>Chris
>>>
>>>-----Ursprüngliche Nachricht-----
>>>Von: Alex Harui [mailto:aharui@adobe.com]
>>>Gesendet: Freitag, 29. Mai 2015 17:26
>>>An: users@flex.apache.org<ma...@flex.apache.org>
>>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Don't know much about Maven, but essentially this means that the
>>>locale/en_US folder is not in the library-path or the _rb.swc files
>>>are missing in those folders.
>>>
>>>-Alex
>>>
>>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-s
>>>ol
>>>uti
>>>ons.com>> wrote:
>>>
>>>>I managed to get a bit further now.
>>>>
>>>>Added the framework swfs dependency separately in the pom so that
>>>>now in my -configs.xml I have them nicely added to
>>>><runtime-shared-library-path>
>>>>
>>>>In the output when running maven clean install, I now get Required
>>>>RSLs:
>>>> ./rsls/advancedgrids_4.14.1.swf
>>>> ./rsls/charts_4.14.1.swf
>>>> ./rsls/core_4.14.1.swf
>>>> ./rsls/framework_4.14.1.swf
>>>> ./rsls/rpc_4.14.1.swf
>>>> ./rsls/spark_4.14.1.swf
>>>> ./rsls/sparkskins_4.14.1.swf
>>>> ./rsls/textLayout_4.14.1.swf
>>>> ./rsls/mx_4.14.1.swf
>>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>>
>>>>Which seems like an ok thing now :D
>>>>However, now I'm getting the dreaded
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "containers" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>
>>>>And the list goes on for a while...
>>>>Grrrrrrr!!
>>>>:)
>>>>_______________________________________
>>>>
>>>>Filip L'Hommelet
>>>>Software Development
>>>>
>>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>>
>>>>ILIAS Solutions
>>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>>B-1130 Brussels, BELGIUM
>>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>>Web
>>>>www.ilias-solutions.com<http://www.ilias-solutions.com<http://www.il
>>>>ias-solutions.com<http://www.ilias-solutions.com>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: vrijdag 29 mei 2015 8:20
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>Could this be because I'm missing the swz-files for the framework?
>>>>We used to have them for SDK4.1 and as I've been reading up on
>>>>swc/swf/swz, swz are needed if you want to include your library at
>>>>runtime?
>>>>Any light-shedding on this is welcome because I'm really at a loss
>>>>now...
>>>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: donderdag 28 mei 2015 17:02
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>There I was, thinking all was well...
>>>>Application builds in FB, runs locally.
>>>>Application builds completely in Maven (thank you Chris).
>>>>
>>>>Application gets deployed to server after being packaged (just like
>>>>we did before when on SDK4.1) and when I run the application I get
>>>>this
>>>>error:
>>>>
>>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be
>>>>found.
>>>>
>>>>Followed by a bunch of other errors in the same genre.
>>>>We deploy on a weblogic.
>>>>I checked our EAR file and in the war that contains our app, there
>>>>is a rsls-subfolder that contains all apache-framework related stuff
>>>>so in that regard, the file we upload looks pretty identical to the
>>>>one we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>>
>>>>So I'm getting a feeling something is going wrong during compilation
>>>>by maven.
>>>>
>>>>Any ideas where I should start look first?
>>>>
>>>>Kr,
>>>>Filip
>>>
>>>
>>>
>>
>


RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
Chris, 
That issue was already resolved, I added the  rb dependencies and so I no longer got the unable to resolve error.
Still however getting the runtime error that UIComponent could not be found (amongst others).
		
-----Original Message-----
From: Christofer Dutz [mailto:christofer.dutz@c-ware.de] 
Sent: dinsdag 2 juni 2015 18:58
To: users@flex.apache.org
Subject: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Did you have a look at my reply a few posts ago?

Chris

Gesendet mit meinem HTC

----- Reply message -----
Von: "Alex Harui" <ah...@adobe.com>
An: "users@flex.apache.org" <us...@flex.apache.org>
Betreff: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
Datum: Di., Juni 2, 2015 18:34

Hi,

I think the problem is that the RSLs are in the wrong order.  I could certainly be wrong.  I'm not quite sure how that's possible, but the list of RSLs you gave a few posts ago:

./rsls/advancedgrids_4.14.1.swf
./rsls/charts_4.14.1.swf
./rsls/core_4.14.1.swf
./rsls/framework_4.14.1.swf
./rsls/rpc_4.14.1.swf
./rsls/spark_4.14.1.swf
./rsls/sparkskins_4.14.1.swf
./rsls/textLayout_4.14.1.swf
./rsls/mx_4.14.1.swf
etc.

appears to be the order the RSLs will be requested by the SWF.  I think the VerifyError is when advancedgrids loads and can't find UIComponent.  A simple test for me like the following:


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
minHeight="600">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <mx:AdvancedDataGrid />
    <mx:PieChart />
</s:Application>

Gives me (for 4.6) the order:


Required RSLs:

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.
swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201
.swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz
 with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23
201.swz with 1 failover.

Try the same test I just did and see what order you get.

-Alex


On 6/1/15, 11:55 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>You've got mail!
>Thanks in advance for any help you provide! :D
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 8:37
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Yes, that's ok.  I'm done for tonight. I will look during my next work 
>day.
>
>-Alex
>
>On 6/1/15, 10:14 PM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Alex
>>
>>Not sure if the policies of the company allow me to post this on a 
>>public mailing list.
>>Any chance I can mail you the output directly?
>>I've got a 2MB large file now.
>>
>>Kr,
>>Filip
>>
>>-----Original Message-----
>>From: Alex Harui [mailto:aharui@adobe.com]
>>Sent: dinsdag 2 juni 2015 0:12
>>To: users@flex.apache.org
>>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Can you post a "swfdump -abc" of your swf?  Don't do it if you don't 
>>want to expose the disassembly of the SWF.
>>
>>-Alex
>>
>>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
>><Fi...@ilias-solutions.com> wrote:
>>
>>>Yes, that is how I fixed the "unable to resolve" issue..
>>>
>>>However, still getting the runtime errors for uicomponent.
>>>
>>>I'm at a loss here.. So close!
>>>Only thing I can think of at the moment is that my dependencies are 
>>>incorrectly ordered... But man, what is the correct order then?
>>>
>>>_____________________________
>>>From: Christofer Dutz
>>><ch...@c-ware.de>>
>>>Sent: Sunday, May 31, 2015 9:48 am
>>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>To: <us...@flex.apache.org>>
>>>
>>>
>>>Actually this problem is a real PITA. With Maven 3.1 they have fixed 
>>>a "bug" in Maven that we have been relying on.
>>>Initially when having an atypical dependency scope such as "rsl" or 
>>>"caching" all transitive dependencies were included.
>>>We were using this for automatically adding the resource bundles. 
>>>Since Maven 3.1 transitive dependencies are no longer resolved if the 
>>>scope is unknown. I have already found the extension point for this, 
>>>but if I want to resolve this issue I will have to extends Maven and 
>>>not fix anything in Flex or Flexmojos.
>>>
>>>My current solution was to add the compile time deps to the resource 
>>>bundles manually for each referenced RSL.
>>>
>>>Chris
>>>
>>>-----Ursprüngliche Nachricht-----
>>>Von: Alex Harui [mailto:aharui@adobe.com]
>>>Gesendet: Freitag, 29. Mai 2015 17:26
>>>An: users@flex.apache.org<ma...@flex.apache.org>
>>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Don't know much about Maven, but essentially this means that the 
>>>locale/en_US folder is not in the library-path or the _rb.swc files 
>>>are missing in those folders.
>>>
>>>-Alex
>>>
>>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-s
>>>ol
>>>uti
>>>ons.com>> wrote:
>>>
>>>>I managed to get a bit further now.
>>>>
>>>>Added the framework swfs dependency separately in the pom so that 
>>>>now in my -configs.xml I have them nicely added to 
>>>><runtime-shared-library-path>
>>>>
>>>>In the output when running maven clean install, I now get Required
>>>>RSLs:
>>>> ./rsls/advancedgrids_4.14.1.swf
>>>> ./rsls/charts_4.14.1.swf
>>>> ./rsls/core_4.14.1.swf
>>>> ./rsls/framework_4.14.1.swf
>>>> ./rsls/rpc_4.14.1.swf
>>>> ./rsls/spark_4.14.1.swf
>>>> ./rsls/sparkskins_4.14.1.swf
>>>> ./rsls/textLayout_4.14.1.swf
>>>> ./rsls/mx_4.14.1.swf
>>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>>
>>>>Which seems like an ok thing now :D
>>>>However, now I'm getting the dreaded
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "containers" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale 
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>
>>>>And the list goes on for a while...
>>>>Grrrrrrr!!
>>>>:)
>>>>_______________________________________
>>>>
>>>>Filip L'Hommelet
>>>>Software Development
>>>>
>>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>>
>>>>ILIAS Solutions
>>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>>B-1130 Brussels, BELGIUM
>>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>>Web 
>>>>www.ilias-solutions.com<http://www.ilias-solutions.com<http://www.il
>>>>ias-solutions.com<http://www.ilias-solutions.com>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: vrijdag 29 mei 2015 8:20
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>Could this be because I'm missing the swz-files for the framework?
>>>>We used to have them for SDK4.1 and as I've been reading up on 
>>>>swc/swf/swz, swz are needed if you want to include your library at 
>>>>runtime?
>>>>Any light-shedding on this is welcome because I'm really at a loss 
>>>>now...
>>>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: donderdag 28 mei 2015 17:02
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>There I was, thinking all was well...
>>>>Application builds in FB, runs locally.
>>>>Application builds completely in Maven (thank you Chris).
>>>>
>>>>Application gets deployed to server after being packaged (just like 
>>>>we did before when on SDK4.1) and when I run the application I get 
>>>>this
>>>>error:
>>>>
>>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be 
>>>>found.
>>>>
>>>>Followed by a bunch of other errors in the same genre.
>>>>We deploy on a weblogic.
>>>>I checked our EAR file and in the war that contains our app, there 
>>>>is a rsls-subfolder that contains all apache-framework related stuff 
>>>>so in that regard, the file we upload looks pretty identical to the 
>>>>one we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>>
>>>>So I'm getting a feeling something is going wrong during compilation 
>>>>by maven.
>>>>
>>>>Any ideas where I should start look first?
>>>>
>>>>Kr,
>>>>Filip
>>>
>>>
>>>
>>
>


AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Christofer Dutz <ch...@c-ware.de>.
Did you have a look at my reply a few posts ago?

Chris

Gesendet mit meinem HTC

----- Reply message -----
Von: "Alex Harui" <ah...@adobe.com>
An: "users@flex.apache.org" <us...@flex.apache.org>
Betreff: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
Datum: Di., Juni 2, 2015 18:34

Hi,

I think the problem is that the RSLs are in the wrong order.  I could
certainly be wrong.  I’m not quite sure how that’s possible, but the list
of RSLs you gave a few posts ago:

./rsls/advancedgrids_4.14.1.swf
./rsls/charts_4.14.1.swf
./rsls/core_4.14.1.swf
./rsls/framework_4.14.1.swf
./rsls/rpc_4.14.1.swf
./rsls/spark_4.14.1.swf
./rsls/sparkskins_4.14.1.swf
./rsls/textLayout_4.14.1.swf
./rsls/mx_4.14.1.swf
etc.

appears to be the order the RSLs will be requested by the SWF.  I think
the VerifyError is when advancedgrids loads and can’t find UIComponent.  A
simple test for me like the following:


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
minHeight="600">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects)
here -->
    </fx:Declarations>
    <mx:AdvancedDataGrid />
    <mx:PieChart />
</s:Application>

Gives me (for 4.6) the order:


Required RSLs:

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.
swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201
.swz with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz
 with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz
with 1 failover.

http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23
201.swz with 1 failover.

Try the same test I just did and see what order you get.

-Alex


On 6/1/15, 11:55 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>You've got mail!
>Thanks in advance for any help you provide! :D
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 8:37
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Yes, that’s ok.  I’m done for tonight. I will look during my next work
>day.
>
>-Alex
>
>On 6/1/15, 10:14 PM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Alex
>>
>>Not sure if the policies of the company allow me to post this on a public
>>mailing list.
>>Any chance I can mail you the output directly?
>>I've got a 2MB large file now.
>>
>>Kr,
>>Filip
>>
>>-----Original Message-----
>>From: Alex Harui [mailto:aharui@adobe.com]
>>Sent: dinsdag 2 juni 2015 0:12
>>To: users@flex.apache.org
>>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Can you post a "swfdump -abc” of your swf?  Don’t do it if you don’t want
>>to expose the disassembly of the SWF.
>>
>>-Alex
>>
>>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
>><Fi...@ilias-solutions.com> wrote:
>>
>>>Yes, that is how I fixed the "unable to resolve" issue..
>>>
>>>However, still getting the runtime errors for uicomponent.
>>>
>>>I'm at a loss here.. So close!
>>>Only thing I can think of at the moment is that my dependencies are
>>>incorrectly ordered... But man, what is the correct order then?
>>>
>>>_____________________________
>>>From: Christofer Dutz
>>><ch...@c-ware.de>>
>>>Sent: Sunday, May 31, 2015 9:48 am
>>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>To: <us...@flex.apache.org>>
>>>
>>>
>>>Actually this problem is a real PITA. With Maven 3.1 they have fixed a
>>>"bug" in Maven that we have been relying on.
>>>Initially when having an atypical dependency scope such as "rsl" or
>>>"caching" all transitive dependencies were included.
>>>We were using this for automatically adding the resource bundles. Since
>>>Maven 3.1 transitive dependencies are no longer resolved if the scope
>>>is unknown. I have already found the extension point for this, but if I
>>>want to resolve this issue I will have to extends Maven and not fix
>>>anything in Flex or Flexmojos.
>>>
>>>My current solution was to add the compile time deps to the resource
>>>bundles manually for each referenced RSL.
>>>
>>>Chris
>>>
>>>-----Ursprüngliche Nachricht-----
>>>Von: Alex Harui [mailto:aharui@adobe.com]
>>>Gesendet: Freitag, 29. Mai 2015 17:26
>>>An: users@flex.apache.org<ma...@flex.apache.org>
>>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Don’t know much about Maven, but essentially this means that the
>>>locale/en_US folder is not in the library-path or the _rb.swc files are
>>>missing in those folders.
>>>
>>>-Alex
>>>
>>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-sol
>>>uti
>>>ons.com>> wrote:
>>>
>>>>I managed to get a bit further now.
>>>>
>>>>Added the framework swfs dependency separately in the pom so that now
>>>>in my -configs.xml I have them nicely added to
>>>><runtime-shared-library-path>
>>>>
>>>>In the output when running maven clean install, I now get Required
>>>>RSLs:
>>>> ./rsls/advancedgrids_4.14.1.swf
>>>> ./rsls/charts_4.14.1.swf
>>>> ./rsls/core_4.14.1.swf
>>>> ./rsls/framework_4.14.1.swf
>>>> ./rsls/rpc_4.14.1.swf
>>>> ./rsls/spark_4.14.1.swf
>>>> ./rsls/sparkskins_4.14.1.swf
>>>> ./rsls/textLayout_4.14.1.swf
>>>> ./rsls/mx_4.14.1.swf
>>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>>
>>>>Which seems like an ok thing now :D
>>>>However, now I'm getting the dreaded
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "containers" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>
>>>>And the list goes on for a while...
>>>>Grrrrrrr!!
>>>>:)
>>>>_______________________________________
>>>>
>>>>Filip L'Hommelet
>>>>Software Development
>>>>
>>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>>
>>>>ILIAS Solutions
>>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>>B-1130 Brussels, BELGIUM
>>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>>Web www.ilias-solutions.com<http://www.ilias-solutions.com<http://www.ilias-solutions.com<http://www.ilias-solutions.com>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: vrijdag 29 mei 2015 8:20
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>Could this be because I'm missing the swz-files for the framework?
>>>>We used to have them for SDK4.1 and as I've been reading up on
>>>>swc/swf/swz, swz are needed if you want to include your library at
>>>>runtime?
>>>>Any light-shedding on this is welcome because I'm really at a loss
>>>>now...
>>>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: donderdag 28 mei 2015 17:02
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>There I was, thinking all was well...
>>>>Application builds in FB, runs locally.
>>>>Application builds completely in Maven (thank you Chris).
>>>>
>>>>Application gets deployed to server after being packaged (just like we
>>>>did before when on SDK4.1) and when I run the application I get this
>>>>error:
>>>>
>>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be
>>>>found.
>>>>
>>>>Followed by a bunch of other errors in the same genre.
>>>>We deploy on a weblogic.
>>>>I checked our EAR file and in the war that contains our app, there is
>>>>a rsls-subfolder that contains all apache-framework related stuff so
>>>>in that regard, the file we upload looks pretty identical to the one
>>>>we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>>
>>>>So I'm getting a feeling something is going wrong during compilation
>>>>by maven.
>>>>
>>>>Any ideas where I should start look first?
>>>>
>>>>Kr,
>>>>Filip
>>>
>>>
>>>
>>
>


Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Alex Harui <ah...@adobe.com>.
Hi,

I think the problem is that the RSLs are in the wrong order.  I could
certainly be wrong.  I’m not quite sure how that’s possible, but the list
of RSLs you gave a few posts ago:

./rsls/advancedgrids_4.14.1.swf
./rsls/charts_4.14.1.swf
./rsls/core_4.14.1.swf
./rsls/framework_4.14.1.swf
./rsls/rpc_4.14.1.swf
./rsls/spark_4.14.1.swf
./rsls/sparkskins_4.14.1.swf
./rsls/textLayout_4.14.1.swf
./rsls/mx_4.14.1.swf
etc.

appears to be the order the RSLs will be requested by the SWF.  I think
the VerifyError is when advancedgrids loads and can’t find UIComponent.  A
simple test for me like the following:


<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955"
minHeight="600">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects)
here -->
    </fx:Declarations>
    <mx:AdvancedDataGrid />
    <mx:PieChart />
</s:Application>

Gives me (for 4.6) the order:


Required RSLs:
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/framework_4.6.0.23201.
swz with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz
with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/spark_4.6.0.23201.swz
with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/sparkskins_4.6.0.23201
.swz with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/charts_4.6.0.23201.swz
 with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/mx_4.6.0.23201.swz
with 1 failover.
    
http://fpdownload.adobe.com/pub/swz/flex/4.6.0.23201/advancedgrids_4.6.0.23
201.swz with 1 failover.

Try the same test I just did and see what order you get.

-Alex


On 6/1/15, 11:55 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>You've got mail!
>Thanks in advance for any help you provide! :D
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 8:37
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Yes, that’s ok.  I’m done for tonight. I will look during my next work
>day.
>
>-Alex
>
>On 6/1/15, 10:14 PM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Alex
>>
>>Not sure if the policies of the company allow me to post this on a public
>>mailing list.
>>Any chance I can mail you the output directly?
>>I've got a 2MB large file now.
>>
>>Kr,
>>Filip
>>
>>-----Original Message-----
>>From: Alex Harui [mailto:aharui@adobe.com]
>>Sent: dinsdag 2 juni 2015 0:12
>>To: users@flex.apache.org
>>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Can you post a "swfdump -abc” of your swf?  Don’t do it if you don’t want
>>to expose the disassembly of the SWF.
>>
>>-Alex
>>
>>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
>><Fi...@ilias-solutions.com> wrote:
>>
>>>Yes, that is how I fixed the "unable to resolve" issue..
>>>
>>>However, still getting the runtime errors for uicomponent.
>>>
>>>I'm at a loss here.. So close!
>>>Only thing I can think of at the moment is that my dependencies are
>>>incorrectly ordered... But man, what is the correct order then?
>>>
>>>_____________________________
>>>From: Christofer Dutz
>>><ch...@c-ware.de>>
>>>Sent: Sunday, May 31, 2015 9:48 am
>>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>To: <us...@flex.apache.org>>
>>>
>>>
>>>Actually this problem is a real PITA. With Maven 3.1 they have fixed a
>>>"bug" in Maven that we have been relying on.
>>>Initially when having an atypical dependency scope such as "rsl" or
>>>"caching" all transitive dependencies were included.
>>>We were using this for automatically adding the resource bundles. Since
>>>Maven 3.1 transitive dependencies are no longer resolved if the scope
>>>is unknown. I have already found the extension point for this, but if I
>>>want to resolve this issue I will have to extends Maven and not fix
>>>anything in Flex or Flexmojos.
>>>
>>>My current solution was to add the compile time deps to the resource
>>>bundles manually for each referenced RSL.
>>>
>>>Chris
>>>
>>>-----Ursprüngliche Nachricht-----
>>>Von: Alex Harui [mailto:aharui@adobe.com]
>>>Gesendet: Freitag, 29. Mai 2015 17:26
>>>An: users@flex.apache.org<ma...@flex.apache.org>
>>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Don’t know much about Maven, but essentially this means that the
>>>locale/en_US folder is not in the library-path or the _rb.swc files are
>>>missing in those folders.
>>>
>>>-Alex
>>>
>>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-sol
>>>uti
>>>ons.com>> wrote:
>>>
>>>>I managed to get a bit further now.
>>>>
>>>>Added the framework swfs dependency separately in the pom so that now
>>>>in my -configs.xml I have them nicely added to
>>>><runtime-shared-library-path>
>>>>
>>>>In the output when running maven clean install, I now get Required
>>>>RSLs:
>>>> ./rsls/advancedgrids_4.14.1.swf
>>>> ./rsls/charts_4.14.1.swf
>>>> ./rsls/core_4.14.1.swf
>>>> ./rsls/framework_4.14.1.swf
>>>> ./rsls/rpc_4.14.1.swf
>>>> ./rsls/spark_4.14.1.swf
>>>> ./rsls/sparkskins_4.14.1.swf
>>>> ./rsls/textLayout_4.14.1.swf
>>>> ./rsls/mx_4.14.1.swf
>>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>>
>>>>Which seems like an ok thing now :D
>>>>However, now I'm getting the dreaded
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "containers" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "messaging" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "collections" for locale
>>>>"en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>>
>>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>>
>>>>
>>>>And the list goes on for a while...
>>>>Grrrrrrr!!
>>>>:)
>>>>_______________________________________
>>>>
>>>>Filip L'Hommelet
>>>>Software Development
>>>>
>>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>>
>>>>ILIAS Solutions
>>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>>B-1130 Brussels, BELGIUM
>>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>>Web www.ilias-solutions.com<http://www.ilias-solutions.com>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: vrijdag 29 mei 2015 8:20
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>Could this be because I'm missing the swz-files for the framework?
>>>>We used to have them for SDK4.1 and as I've been reading up on
>>>>swc/swf/swz, swz are needed if you want to include your library at
>>>>runtime?
>>>>Any light-shedding on this is welcome because I'm really at a loss
>>>>now...
>>>>
>>>>-----Original Message-----
>>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>>Sent: donderdag 28 mei 2015 17:02
>>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>>Class mx.core::UIComponent could not be found.
>>>>
>>>>There I was, thinking all was well...
>>>>Application builds in FB, runs locally.
>>>>Application builds completely in Maven (thank you Chris).
>>>>
>>>>Application gets deployed to server after being packaged (just like we
>>>>did before when on SDK4.1) and when I run the application I get this
>>>>error:
>>>>
>>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be
>>>>found.
>>>>
>>>>Followed by a bunch of other errors in the same genre.
>>>>We deploy on a weblogic.
>>>>I checked our EAR file and in the war that contains our app, there is
>>>>a rsls-subfolder that contains all apache-framework related stuff so
>>>>in that regard, the file we upload looks pretty identical to the one
>>>>we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>>
>>>>So I'm getting a feeling something is going wrong during compilation
>>>>by maven.
>>>>
>>>>Any ideas where I should start look first?
>>>>
>>>>Kr,
>>>>Filip
>>>
>>>
>>>
>>
>


RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
You've got mail!
Thanks in advance for any help you provide! :D

Kr,
Filip

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com] 
Sent: dinsdag 2 juni 2015 8:37
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Yes, that’s ok.  I’m done for tonight. I will look during my next work day.

-Alex

On 6/1/15, 10:14 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Alex
>
>Not sure if the policies of the company allow me to post this on a public
>mailing list.
>Any chance I can mail you the output directly?
>I've got a 2MB large file now.
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 0:12
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Can you post a "swfdump -abc” of your swf?  Don’t do it if you don’t want
>to expose the disassembly of the SWF.
>
>-Alex
>
>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Yes, that is how I fixed the "unable to resolve" issue..
>>
>>However, still getting the runtime errors for uicomponent.
>>
>>I'm at a loss here.. So close!
>>Only thing I can think of at the moment is that my dependencies are
>>incorrectly ordered... But man, what is the correct order then?
>>
>>_____________________________
>>From: Christofer Dutz
>><ch...@c-ware.de>>
>>Sent: Sunday, May 31, 2015 9:48 am
>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>To: <us...@flex.apache.org>>
>>
>>
>>Actually this problem is a real PITA. With Maven 3.1 they have fixed a
>>"bug" in Maven that we have been relying on.
>>Initially when having an atypical dependency scope such as "rsl" or
>>"caching" all transitive dependencies were included.
>>We were using this for automatically adding the resource bundles. Since
>>Maven 3.1 transitive dependencies are no longer resolved if the scope
>>is unknown. I have already found the extension point for this, but if I
>>want to resolve this issue I will have to extends Maven and not fix
>>anything in Flex or Flexmojos.
>>
>>My current solution was to add the compile time deps to the resource
>>bundles manually for each referenced RSL.
>>
>>Chris
>>
>>-----Ursprüngliche Nachricht-----
>>Von: Alex Harui [mailto:aharui@adobe.com]
>>Gesendet: Freitag, 29. Mai 2015 17:26
>>An: users@flex.apache.org<ma...@flex.apache.org>
>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Don’t know much about Maven, but essentially this means that the
>>locale/en_US folder is not in the library-path or the _rb.swc files are
>>missing in those folders.
>>
>>-Alex
>>
>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-sol
>>uti
>>ons.com>> wrote:
>>
>>>I managed to get a bit further now.
>>>
>>>Added the framework swfs dependency separately in the pom so that now
>>>in my -configs.xml I have them nicely added to
>>><runtime-shared-library-path>
>>>
>>>In the output when running maven clean install, I now get Required
>>>RSLs:
>>> ./rsls/advancedgrids_4.14.1.swf
>>> ./rsls/charts_4.14.1.swf
>>> ./rsls/core_4.14.1.swf
>>> ./rsls/framework_4.14.1.swf
>>> ./rsls/rpc_4.14.1.swf
>>> ./rsls/spark_4.14.1.swf
>>> ./rsls/sparkskins_4.14.1.swf
>>> ./rsls/textLayout_4.14.1.swf
>>> ./rsls/mx_4.14.1.swf
>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>
>>>Which seems like an ok thing now :D
>>>However, now I'm getting the dreaded
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "containers" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>
>>>And the list goes on for a while...
>>>Grrrrrrr!!
>>>:)
>>>_______________________________________
>>>
>>>Filip L'Hommelet
>>>Software Development
>>>
>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>
>>>ILIAS Solutions
>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>B-1130 Brussels, BELGIUM
>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>Web www.ilias-solutions.com<http://www.ilias-solutions.com>
>>>-----Original Message-----
>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>Sent: vrijdag 29 mei 2015 8:20
>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Could this be because I'm missing the swz-files for the framework?
>>>We used to have them for SDK4.1 and as I've been reading up on
>>>swc/swf/swz, swz are needed if you want to include your library at
>>>runtime?
>>>Any light-shedding on this is welcome because I'm really at a loss
>>>now...
>>>
>>>-----Original Message-----
>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>Sent: donderdag 28 mei 2015 17:02
>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>There I was, thinking all was well...
>>>Application builds in FB, runs locally.
>>>Application builds completely in Maven (thank you Chris).
>>>
>>>Application gets deployed to server after being packaged (just like we
>>>did before when on SDK4.1) and when I run the application I get this
>>>error:
>>>
>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
>>>
>>>Followed by a bunch of other errors in the same genre.
>>>We deploy on a weblogic.
>>>I checked our EAR file and in the war that contains our app, there is
>>>a rsls-subfolder that contains all apache-framework related stuff so
>>>in that regard, the file we upload looks pretty identical to the one
>>>we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>
>>>So I'm getting a feeling something is going wrong during compilation
>>>by maven.
>>>
>>>Any ideas where I should start look first?
>>>
>>>Kr,
>>>Filip
>>
>>
>>
>


Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Alex Harui <ah...@adobe.com>.
Yes, that’s ok.  I’m done for tonight. I will look during my next work day.

-Alex

On 6/1/15, 10:14 PM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Alex
>
>Not sure if the policies of the company allow me to post this on a public
>mailing list.
>Any chance I can mail you the output directly?
>I've got a 2MB large file now.
>
>Kr,
>Filip
>
>-----Original Message-----
>From: Alex Harui [mailto:aharui@adobe.com]
>Sent: dinsdag 2 juni 2015 0:12
>To: users@flex.apache.org
>Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Can you post a "swfdump -abc” of your swf?  Don’t do it if you don’t want
>to expose the disassembly of the SWF.
>
>-Alex
>
>On 6/1/15, 7:14 AM, "L'Hommelet Filip"
><Fi...@ilias-solutions.com> wrote:
>
>>Yes, that is how I fixed the "unable to resolve" issue..
>>
>>However, still getting the runtime errors for uicomponent.
>>
>>I'm at a loss here.. So close!
>>Only thing I can think of at the moment is that my dependencies are
>>incorrectly ordered... But man, what is the correct order then?
>>
>>_____________________________
>>From: Christofer Dutz
>><ch...@c-ware.de>>
>>Sent: Sunday, May 31, 2015 9:48 am
>>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>To: <us...@flex.apache.org>>
>>
>>
>>Actually this problem is a real PITA. With Maven 3.1 they have fixed a
>>"bug" in Maven that we have been relying on.
>>Initially when having an atypical dependency scope such as "rsl" or
>>"caching" all transitive dependencies were included.
>>We were using this for automatically adding the resource bundles. Since
>>Maven 3.1 transitive dependencies are no longer resolved if the scope
>>is unknown. I have already found the extension point for this, but if I
>>want to resolve this issue I will have to extends Maven and not fix
>>anything in Flex or Flexmojos.
>>
>>My current solution was to add the compile time deps to the resource
>>bundles manually for each referenced RSL.
>>
>>Chris
>>
>>-----Ursprüngliche Nachricht-----
>>Von: Alex Harui [mailto:aharui@adobe.com]
>>Gesendet: Freitag, 29. Mai 2015 17:26
>>An: users@flex.apache.org<ma...@flex.apache.org>
>>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Don’t know much about Maven, but essentially this means that the
>>locale/en_US folder is not in the library-path or the _rb.swc files are
>>missing in those folders.
>>
>>-Alex
>>
>>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
>><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-sol
>>uti
>>ons.com>> wrote:
>>
>>>I managed to get a bit further now.
>>>
>>>Added the framework swfs dependency separately in the pom so that now
>>>in my -configs.xml I have them nicely added to
>>><runtime-shared-library-path>
>>>
>>>In the output when running maven clean install, I now get Required
>>>RSLs:
>>> ./rsls/advancedgrids_4.14.1.swf
>>> ./rsls/charts_4.14.1.swf
>>> ./rsls/core_4.14.1.swf
>>> ./rsls/framework_4.14.1.swf
>>> ./rsls/rpc_4.14.1.swf
>>> ./rsls/spark_4.14.1.swf
>>> ./rsls/sparkskins_4.14.1.swf
>>> ./rsls/textLayout_4.14.1.swf
>>> ./rsls/mx_4.14.1.swf
>>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>>
>>>Which seems like an ok thing now :D
>>>However, now I'm getting the dreaded
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "containers" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "collections" for locale
>>>"en_US".
>>>
>>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>>
>>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>>
>>>
>>>And the list goes on for a while...
>>>Grrrrrrr!!
>>>:)
>>>_______________________________________
>>>
>>>Filip L'Hommelet
>>>Software Development
>>>
>>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>>
>>>ILIAS Solutions
>>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>>B-1130 Brussels, BELGIUM
>>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>>Web www.ilias-solutions.com<http://www.ilias-solutions.com>
>>>-----Original Message-----
>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>Sent: vrijdag 29 mei 2015 8:20
>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>Could this be because I'm missing the swz-files for the framework?
>>>We used to have them for SDK4.1 and as I've been reading up on
>>>swc/swf/swz, swz are needed if you want to include your library at
>>>runtime?
>>>Any light-shedding on this is welcome because I'm really at a loss
>>>now...
>>>
>>>-----Original Message-----
>>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>>Sent: donderdag 28 mei 2015 17:02
>>>To: users@flex.apache.org<ma...@flex.apache.org>
>>>Subject: Deployed application: runtime: VerifyError: Error #1014:
>>>Class mx.core::UIComponent could not be found.
>>>
>>>There I was, thinking all was well...
>>>Application builds in FB, runs locally.
>>>Application builds completely in Maven (thank you Chris).
>>>
>>>Application gets deployed to server after being packaged (just like we
>>>did before when on SDK4.1) and when I run the application I get this
>>>error:
>>>
>>>VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
>>>
>>>Followed by a bunch of other errors in the same genre.
>>>We deploy on a weblogic.
>>>I checked our EAR file and in the war that contains our app, there is
>>>a rsls-subfolder that contains all apache-framework related stuff so
>>>in that regard, the file we upload looks pretty identical to the one
>>>we uploaded when still on SDK4.1 and FlexMojo3.8.
>>>
>>>So I'm getting a feeling something is going wrong during compilation
>>>by maven.
>>>
>>>Any ideas where I should start look first?
>>>
>>>Kr,
>>>Filip
>>
>>
>>
>


RE: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
Alex

Not sure if the policies of the company allow me to post this on a public mailing list.
Any chance I can mail you the output directly?
I've got a 2MB large file now.

Kr,
Filip

-----Original Message-----
From: Alex Harui [mailto:aharui@adobe.com] 
Sent: dinsdag 2 juni 2015 0:12
To: users@flex.apache.org
Subject: Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Can you post a "swfdump -abc” of your swf?  Don’t do it if you don’t want to expose the disassembly of the SWF.

-Alex

On 6/1/15, 7:14 AM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Yes, that is how I fixed the "unable to resolve" issue..
>
>However, still getting the runtime errors for uicomponent.
>
>I'm at a loss here.. So close!
>Only thing I can think of at the moment is that my dependencies are 
>incorrectly ordered... But man, what is the correct order then?
>
>_____________________________
>From: Christofer Dutz
><ch...@c-ware.de>>
>Sent: Sunday, May 31, 2015 9:48 am
>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>To: <us...@flex.apache.org>>
>
>
>Actually this problem is a real PITA. With Maven 3.1 they have fixed a 
>"bug" in Maven that we have been relying on.
>Initially when having an atypical dependency scope such as "rsl" or 
>"caching" all transitive dependencies were included.
>We were using this for automatically adding the resource bundles. Since 
>Maven 3.1 transitive dependencies are no longer resolved if the scope 
>is unknown. I have already found the extension point for this, but if I 
>want to resolve this issue I will have to extends Maven and not fix 
>anything in Flex or Flexmojos.
>
>My current solution was to add the compile time deps to the resource 
>bundles manually for each referenced RSL.
>
>Chris
>
>-----Ursprüngliche Nachricht-----
>Von: Alex Harui [mailto:aharui@adobe.com]
>Gesendet: Freitag, 29. Mai 2015 17:26
>An: users@flex.apache.org<ma...@flex.apache.org>
>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Don’t know much about Maven, but essentially this means that the 
>locale/en_US folder is not in the library-path or the _rb.swc files are 
>missing in those folders.
>
>-Alex
>
>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-sol
>uti
>ons.com>> wrote:
>
>>I managed to get a bit further now.
>>
>>Added the framework swfs dependency separately in the pom so that now 
>>in my -configs.xml I have them nicely added to 
>><runtime-shared-library-path>
>>
>>In the output when running maven clean install, I now get Required
>>RSLs:
>> ./rsls/advancedgrids_4.14.1.swf
>> ./rsls/charts_4.14.1.swf
>> ./rsls/core_4.14.1.swf
>> ./rsls/framework_4.14.1.swf
>> ./rsls/rpc_4.14.1.swf
>> ./rsls/spark_4.14.1.swf
>> ./rsls/sparkskins_4.14.1.swf
>> ./rsls/textLayout_4.14.1.swf
>> ./rsls/mx_4.14.1.swf
>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>
>>Which seems like an ok thing now :D
>>However, now I'm getting the dreaded
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale 
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "containers" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale 
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale 
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale 
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>
>>And the list goes on for a while...
>>Grrrrrrr!!
>>:)
>>_______________________________________
>>
>>Filip L'Hommelet
>>Software Development
>>
>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>
>>ILIAS Solutions
>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>B-1130 Brussels, BELGIUM
>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>Web www.ilias-solutions.com<http://www.ilias-solutions.com>
>>-----Original Message-----
>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>Sent: vrijdag 29 mei 2015 8:20
>>To: users@flex.apache.org<ma...@flex.apache.org>
>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Could this be because I'm missing the swz-files for the framework?
>>We used to have them for SDK4.1 and as I've been reading up on 
>>swc/swf/swz, swz are needed if you want to include your library at 
>>runtime?
>>Any light-shedding on this is welcome because I'm really at a loss now...
>>
>>-----Original Message-----
>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>Sent: donderdag 28 mei 2015 17:02
>>To: users@flex.apache.org<ma...@flex.apache.org>
>>Subject: Deployed application: runtime: VerifyError: Error #1014: 
>>Class mx.core::UIComponent could not be found.
>>
>>There I was, thinking all was well...
>>Application builds in FB, runs locally.
>>Application builds completely in Maven (thank you Chris).
>>
>>Application gets deployed to server after being packaged (just like we 
>>did before when on SDK4.1) and when I run the application I get this
>>error:
>>
>>VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
>>
>>Followed by a bunch of other errors in the same genre.
>>We deploy on a weblogic.
>>I checked our EAR file and in the war that contains our app, there is 
>>a rsls-subfolder that contains all apache-framework related stuff so 
>>in that regard, the file we upload looks pretty identical to the one 
>>we uploaded when still on SDK4.1 and FlexMojo3.8.
>>
>>So I'm getting a feeling something is going wrong during compilation 
>>by maven.
>>
>>Any ideas where I should start look first?
>>
>>Kr,
>>Filip
>
>
>


Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Alex Harui <ah...@adobe.com>.
Can you post a "swfdump -abc” of your swf?  Don’t do it if you don’t want
to expose the disassembly of the SWF.

-Alex

On 6/1/15, 7:14 AM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>Yes, that is how I fixed the "unable to resolve" issue..
>
>However, still getting the runtime errors for uicomponent.
>
>I'm at a loss here.. So close!
>Only thing I can think of at the moment is that my dependencies are
>incorrectly ordered... But man, what is the correct order then?
>
>_____________________________
>From: Christofer Dutz
><ch...@c-ware.de>>
>Sent: Sunday, May 31, 2015 9:48 am
>Subject: AW: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>To: <us...@flex.apache.org>>
>
>
>Actually this problem is a real PITA. With Maven 3.1 they have fixed a
>"bug" in Maven that we have been relying on.
>Initially when having an atypical dependency scope such as "rsl" or
>"caching" all transitive dependencies were included.
>We were using this for automatically adding the resource bundles. Since
>Maven 3.1 transitive dependencies are no longer resolved if the scope is
>unknown. I have already found the extension point for this, but if I want
>to resolve this issue I will have to extends Maven and not fix anything
>in Flex or Flexmojos.
>
>My current solution was to add the compile time deps to the resource
>bundles manually for each referenced RSL.
>
>Chris
>
>-----Ursprüngliche Nachricht-----
>Von: Alex Harui [mailto:aharui@adobe.com]
>Gesendet: Freitag, 29. Mai 2015 17:26
>An: users@flex.apache.org<ma...@flex.apache.org>
>Betreff: Re: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Don’t know much about Maven, but essentially this means that the
>locale/en_US folder is not in the library-path or the _rb.swc files are
>missing in those folders.
>
>-Alex
>
>On 5/29/15, 12:08 AM, "L'Hommelet Filip"
><Filip.L'Hommelet@ilias-solutions.com<mailto:Filip.L'Hommelet@ilias-soluti
>ons.com>> wrote:
>
>>I managed to get a bit further now.
>>
>>Added the framework swfs dependency separately in the pom so that now
>>in my -configs.xml I have them nicely added to
>><runtime-shared-library-path>
>>
>>In the output when running maven clean install, I now get Required
>>RSLs:
>> ./rsls/advancedgrids_4.14.1.swf
>> ./rsls/charts_4.14.1.swf
>> ./rsls/core_4.14.1.swf
>> ./rsls/framework_4.14.1.swf
>> ./rsls/rpc_4.14.1.swf
>> ./rsls/spark_4.14.1.swf
>> ./rsls/sparkskins_4.14.1.swf
>> ./rsls/textLayout_4.14.1.swf
>> ./rsls/mx_4.14.1.swf
>> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>>
>>Which seems like an ok thing now :D
>>However, now I'm getting the dreaded
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "containers" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "collections" for locale
>>"en_US".
>>
>>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>>
>>Error: Unable to resolve resource bundle "core" for locale "en_US".
>>
>>
>>And the list goes on for a while...
>>Grrrrrrr!!
>>:)
>>_______________________________________
>>
>>Filip L'Hommelet
>>Software Development
>>
>>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>>
>>ILIAS Solutions
>>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>>B-1130 Brussels, BELGIUM
>>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>>Web www.ilias-solutions.com<http://www.ilias-solutions.com>
>>-----Original Message-----
>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>Sent: vrijdag 29 mei 2015 8:20
>>To: users@flex.apache.org<ma...@flex.apache.org>
>>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>>Class mx.core::UIComponent could not be found.
>>
>>Could this be because I'm missing the swz-files for the framework?
>>We used to have them for SDK4.1 and as I've been reading up on
>>swc/swf/swz, swz are needed if you want to include your library at
>>runtime?
>>Any light-shedding on this is welcome because I'm really at a loss now...
>>
>>-----Original Message-----
>>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>>Sent: donderdag 28 mei 2015 17:02
>>To: users@flex.apache.org<ma...@flex.apache.org>
>>Subject: Deployed application: runtime: VerifyError: Error #1014: Class
>>mx.core::UIComponent could not be found.
>>
>>There I was, thinking all was well...
>>Application builds in FB, runs locally.
>>Application builds completely in Maven (thank you Chris).
>>
>>Application gets deployed to server after being packaged (just like we
>>did before when on SDK4.1) and when I run the application I get this
>>error:
>>
>>VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
>>
>>Followed by a bunch of other errors in the same genre.
>>We deploy on a weblogic.
>>I checked our EAR file and in the war that contains our app, there is a
>>rsls-subfolder that contains all apache-framework related stuff so in
>>that regard, the file we upload looks pretty identical to the one we
>>uploaded when still on SDK4.1 and FlexMojo3.8.
>>
>>So I'm getting a feeling something is going wrong during compilation by
>>maven.
>>
>>Any ideas where I should start look first?
>>
>>Kr,
>>Filip
>
>
>


Re: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
Yes, that is how I fixed the "unable to resolve" issue..

However, still getting the runtime errors for uicomponent.

I'm at a loss here.. So close!
Only thing I can think of at the moment is that my dependencies are incorrectly ordered... But man, what is the correct order then?

_____________________________
From: Christofer Dutz <ch...@c-ware.de>>
Sent: Sunday, May 31, 2015 9:48 am
Subject: AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
To: <us...@flex.apache.org>>


Actually this problem is a real PITA. With Maven 3.1 they have fixed a "bug" in Maven that we have been relying on.
Initially when having an atypical dependency scope such as "rsl" or "caching" all transitive dependencies were included.
We were using this for automatically adding the resource bundles. Since Maven 3.1 transitive dependencies are no longer resolved if the scope is unknown. I have already found the extension point for this, but if I want to resolve this issue I will have to extends Maven and not fix anything in Flex or Flexmojos.

My current solution was to add the compile time deps to the resource bundles manually for each referenced RSL.

Chris

-----Ursprüngliche Nachricht-----
Von: Alex Harui [mailto:aharui@adobe.com]
Gesendet: Freitag, 29. Mai 2015 17:26
An: users@flex.apache.org<ma...@flex.apache.org>
Betreff: Re: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Don’t know much about Maven, but essentially this means that the locale/en_US folder is not in the library-path or the _rb.swc files are missing in those folders.

-Alex

On 5/29/15, 12:08 AM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com>> wrote:

>I managed to get a bit further now.
>
>Added the framework swfs dependency separately in the pom so that now
>in my -configs.xml I have them nicely added to
><runtime-shared-library-path>
>
>In the output when running maven clean install, I now get Required
>RSLs:
> ./rsls/advancedgrids_4.14.1.swf
> ./rsls/charts_4.14.1.swf
> ./rsls/core_4.14.1.swf
> ./rsls/framework_4.14.1.swf
> ./rsls/rpc_4.14.1.swf
> ./rsls/spark_4.14.1.swf
> ./rsls/sparkskins_4.14.1.swf
> ./rsls/textLayout_4.14.1.swf
> ./rsls/mx_4.14.1.swf
> ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
> ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
> ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>
>Which seems like an ok thing now :D
>However, now I'm getting the dreaded
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>
>Error: Unable to resolve resource bundle "containers" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>
>And the list goes on for a while...
>Grrrrrrr!!
>:)
>_______________________________________
>
>Filip L'Hommelet
>Software Development
>
>Direct +32 (0)2 708 81 68<tel:+32%20(0)2%20708%2081%2068>
>Mobile +32(0)479 37 67 59<tel:+32(0)479%2037%2067%2059>
>
>ILIAS Solutions
>Raketstraat 60 Rue de la Fusée<x-apple-data-detectors://12>
>B-1130 Brussels, BELGIUM
>Reception +32 (0)2 708 81 50<tel:+32%20(0)2%20708%2081%2050>
>Web www.ilias-solutions.com<http://www.ilias-solutions.com>
>-----Original Message-----
>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>Sent: vrijdag 29 mei 2015 8:20
>To: users@flex.apache.org<ma...@flex.apache.org>
>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Could this be because I'm missing the swz-files for the framework?
>We used to have them for SDK4.1 and as I've been reading up on
>swc/swf/swz, swz are needed if you want to include your library at
>runtime?
>Any light-shedding on this is welcome because I'm really at a loss now...
>
>-----Original Message-----
>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>Sent: donderdag 28 mei 2015 17:02
>To: users@flex.apache.org<ma...@flex.apache.org>
>Subject: Deployed application: runtime: VerifyError: Error #1014: Class
>mx.core::UIComponent could not be found.
>
>There I was, thinking all was well...
>Application builds in FB, runs locally.
>Application builds completely in Maven (thank you Chris).
>
>Application gets deployed to server after being packaged (just like we
>did before when on SDK4.1) and when I run the application I get this
>error:
>
>VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
>
>Followed by a bunch of other errors in the same genre.
>We deploy on a weblogic.
>I checked our EAR file and in the war that contains our app, there is a
>rsls-subfolder that contains all apache-framework related stuff so in
>that regard, the file we upload looks pretty identical to the one we
>uploaded when still on SDK4.1 and FlexMojo3.8.
>
>So I'm getting a feeling something is going wrong during compilation by
>maven.
>
>Any ideas where I should start look first?
>
>Kr,
>Filip




AW: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Christofer Dutz <ch...@c-ware.de>.
Actually this problem is a real PITA. With Maven 3.1 they have fixed a "bug" in Maven that we have been relying on.
Initially when having an atypical dependency scope such as "rsl" or "caching" all transitive dependencies were included.
We were using this for automatically adding the resource bundles. Since Maven 3.1 transitive dependencies are no longer resolved if the scope is unknown. I have already found the extension point for this, but if I want to resolve this issue I will have to extends Maven and not fix anything in Flex or Flexmojos.

My current solution was to add the compile time deps to the resource bundles manually for each referenced RSL.

Chris

-----Ursprüngliche Nachricht-----
Von: Alex Harui [mailto:aharui@adobe.com] 
Gesendet: Freitag, 29. Mai 2015 17:26
An: users@flex.apache.org
Betreff: Re: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Don’t know much about Maven, but essentially this means that the locale/en_US folder is not in the library-path or the _rb.swc files are missing in those folders.

-Alex

On 5/29/15, 12:08 AM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>I managed to get a bit further now.
>
>Added the framework swfs dependency separately in the pom so that now 
>in my -configs.xml I have them nicely added to 
><runtime-shared-library-path>
>
>In the output when running maven clean install, I now get Required 
>RSLs:
>    ./rsls/advancedgrids_4.14.1.swf
>    ./rsls/charts_4.14.1.swf
>    ./rsls/core_4.14.1.swf
>    ./rsls/framework_4.14.1.swf
>    ./rsls/rpc_4.14.1.swf
>    ./rsls/spark_4.14.1.swf
>    ./rsls/sparkskins_4.14.1.swf
>    ./rsls/textLayout_4.14.1.swf
>    ./rsls/mx_4.14.1.swf
>    ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>    ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>    ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>
>Which seems like an ok thing now :D
>However, now I'm getting the dreaded
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>
>Error: Unable to resolve resource bundle "containers" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>
>And the list goes on for a while...
>Grrrrrrr!!
>:)
>_______________________________________
>
>Filip L'Hommelet
>Software Development
>
>Direct		+32 (0)2 708 81 68
>Mobile		+32(0)479 37 67 59
>
>ILIAS Solutions
>Raketstraat 60 Rue de la Fusée
>B-1130 Brussels, BELGIUM 	
>Reception	+32 (0)2 708 81 50
>Web		www.ilias-solutions.com
>-----Original Message-----
>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>Sent: vrijdag 29 mei 2015 8:20
>To: users@flex.apache.org
>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Could this be because I'm missing the swz-files for the framework?
>We used to have them for SDK4.1 and as I've been reading up on 
>swc/swf/swz, swz are needed if you want to include your library at 
>runtime?
>Any light-shedding on this is welcome because I'm really at a loss now...
>
>-----Original Message-----
>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>Sent: donderdag 28 mei 2015 17:02
>To: users@flex.apache.org
>Subject: Deployed application: runtime: VerifyError: Error #1014: Class 
>mx.core::UIComponent could not be found.
>
>There I was, thinking all was well...
>Application builds in FB, runs locally.
>Application builds completely in Maven (thank you Chris).
>
>Application gets deployed to server after being packaged (just like we 
>did before when on SDK4.1) and when I run the application I get this 
>error:
>
>VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
>
>Followed by a bunch of other errors in the same genre.
>We deploy on a weblogic.
>I checked our EAR file and in the war that contains our app, there is a 
>rsls-subfolder that contains all apache-framework related stuff so in 
>that regard, the file we upload looks pretty identical to the one we 
>uploaded when still on SDK4.1 and FlexMojo3.8.
>
>So I'm getting a feeling something is going wrong during compilation by 
>maven.
>
>Any ideas where I should start look first?
>
>Kr,
>Filip


Re: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by Alex Harui <ah...@adobe.com>.
Don’t know much about Maven, but essentially this means that the
locale/en_US folder is not in the library-path or the _rb.swc files are
missing in those folders.

-Alex

On 5/29/15, 12:08 AM, "L'Hommelet Filip"
<Fi...@ilias-solutions.com> wrote:

>I managed to get a bit further now.
>
>Added the framework swfs dependency separately in the pom so that now in
>my -configs.xml 
>I have them nicely added to <runtime-shared-library-path>
>
>In the output when running maven clean install, I now get
>Required RSLs:
>    ./rsls/advancedgrids_4.14.1.swf
>    ./rsls/charts_4.14.1.swf
>    ./rsls/core_4.14.1.swf
>    ./rsls/framework_4.14.1.swf
>    ./rsls/rpc_4.14.1.swf
>    ./rsls/spark_4.14.1.swf
>    ./rsls/sparkskins_4.14.1.swf
>    ./rsls/textLayout_4.14.1.swf
>    ./rsls/mx_4.14.1.swf
>    ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
>    ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
>    ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf
>
>Which seems like an ok thing now :D
>However, now I'm getting the dreaded
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>Error: Unable to resolve resource bundle "skins" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "modules" for locale "en_US".
>
>Error: Unable to resolve resource bundle "containers" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "messaging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>
>Error: Unable to resolve resource bundle "collections" for locale "en_US".
>
>Error: Unable to resolve resource bundle "logging" for locale "en_US".
>
>Error: Unable to resolve resource bundle "rpc" for locale "en_US".
>
>Error: Unable to resolve resource bundle "core" for locale "en_US".
>
>
>And the list goes on for a while...
>Grrrrrrr!!
>:)
>_______________________________________
>
>Filip L'Hommelet
>Software Development
>
>Direct		+32 (0)2 708 81 68
>Mobile		+32(0)479 37 67 59
>
>ILIAS Solutions
>Raketstraat 60 Rue de la Fusée
>B-1130 Brussels, BELGIUM 	
>Reception	+32 (0)2 708 81 50
>Web		www.ilias-solutions.com
>-----Original Message-----
>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>Sent: vrijdag 29 mei 2015 8:20
>To: users@flex.apache.org
>Subject: RE: Deployed application: runtime: VerifyError: Error #1014:
>Class mx.core::UIComponent could not be found.
>
>Could this be because I'm missing the swz-files for the framework?
>We used to have them for SDK4.1 and as I've been reading up on
>swc/swf/swz, swz are needed if you want to include your library at
>runtime?
>Any light-shedding on this is welcome because I'm really at a loss now...
>
>-----Original Message-----
>From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com]
>Sent: donderdag 28 mei 2015 17:02
>To: users@flex.apache.org
>Subject: Deployed application: runtime: VerifyError: Error #1014: Class
>mx.core::UIComponent could not be found.
>
>There I was, thinking all was well...
>Application builds in FB, runs locally.
>Application builds completely in Maven (thank you Chris).
>
>Application gets deployed to server after being packaged (just like we
>did before when on SDK4.1)
>and when I run the application I get this error:
>
>VerifyError: Error #1014: Class mx.core::UIComponent could not be found.
>
>Followed by a bunch of other errors in the same genre.
>We deploy on a weblogic.
>I checked our EAR file and in the war that contains our app, there is a
>rsls-subfolder that contains all apache-framework related stuff
>so in that regard, the file we upload looks pretty identical to the one
>we uploaded when still on SDK4.1 and FlexMojo3.8.
>
>So I'm getting a feeling something is going wrong during compilation by
>maven.
>
>Any ideas where I should start look first?
>
>Kr,
>Filip


RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
I managed to get a bit further now.

Added the framework swfs dependency separately in the pom so that now in my -configs.xml 
I have them nicely added to <runtime-shared-library-path>

In the output when running maven clean install, I now get 
Required RSLs:
    ./rsls/advancedgrids_4.14.1.swf
    ./rsls/charts_4.14.1.swf
    ./rsls/core_4.14.1.swf
    ./rsls/framework_4.14.1.swf
    ./rsls/rpc_4.14.1.swf
    ./rsls/spark_4.14.1.swf
    ./rsls/sparkskins_4.14.1.swf
    ./rsls/textLayout_4.14.1.swf
    ./rsls/mx_4.14.1.swf
    ./rsls/FlexAppeal3rdPartyLib_branch-SDK4.6-B63.swf
    ./rsls/FlexAppealFrameworkSharedLib_branch-SDK4.6-B63.swf
    ./rsls/BuildingBlocks_2_branch-SDK4.6-B63.swf

Which seems like an ok thing now :D
However, now I'm getting the dreaded 
Error: Unable to resolve resource bundle "core" for locale "en_US".

Error: Unable to resolve resource bundle "core" for locale "en_US".

Error: Unable to resolve resource bundle "core" for locale "en_US".

Error: Unable to resolve resource bundle "skins" for locale "en_US".

Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Error: Unable to resolve resource bundle "collections" for locale "en_US".

Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Error: Unable to resolve resource bundle "modules" for locale "en_US".

Error: Unable to resolve resource bundle "containers" for locale "en_US".

Error: Unable to resolve resource bundle "collections" for locale "en_US".

Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Error: Unable to resolve resource bundle "logging" for locale "en_US".

Error: Unable to resolve resource bundle "collections" for locale "en_US".

Error: Unable to resolve resource bundle "messaging" for locale "en_US".

Error: Unable to resolve resource bundle "rpc" for locale "en_US".

Error: Unable to resolve resource bundle "collections" for locale "en_US".

Error: Unable to resolve resource bundle "logging" for locale "en_US".

Error: Unable to resolve resource bundle "rpc" for locale "en_US".

Error: Unable to resolve resource bundle "core" for locale "en_US".


And the list goes on for a while...
Grrrrrrr!!
:)
_______________________________________

Filip L'Hommelet
Software Development

Direct		+32 (0)2 708 81 68
Mobile		+32(0)479 37 67 59

ILIAS Solutions
Raketstraat 60 Rue de la Fusée
B-1130 Brussels, BELGIUM 	
Reception	+32 (0)2 708 81 50
Web		www.ilias-solutions.com
-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com] 
Sent: vrijdag 29 mei 2015 8:20
To: users@flex.apache.org
Subject: RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Could this be because I'm missing the swz-files for the framework?
We used to have them for SDK4.1 and as I've been reading up on swc/swf/swz, swz are needed if you want to include your library at runtime?
Any light-shedding on this is welcome because I'm really at a loss now...

-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com] 
Sent: donderdag 28 mei 2015 17:02
To: users@flex.apache.org
Subject: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

There I was, thinking all was well...
Application builds in FB, runs locally.
Application builds completely in Maven (thank you Chris).

Application gets deployed to server after being packaged (just like we did before when on SDK4.1)
and when I run the application I get this error:

VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Followed by a bunch of other errors in the same genre.
We deploy on a weblogic.
I checked our EAR file and in the war that contains our app, there is a rsls-subfolder that contains all apache-framework related stuff
so in that regard, the file we upload looks pretty identical to the one we uploaded when still on SDK4.1 and FlexMojo3.8.

So I'm getting a feeling something is going wrong during compilation by maven.

Any ideas where I should start look first?

Kr,
Filip

RE: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Posted by L'Hommelet Filip <Fi...@ilias-solutions.com>.
Could this be because I'm missing the swz-files for the framework?
We used to have them for SDK4.1 and as I've been reading up on swc/swf/swz, swz are needed if you want to include your library at runtime?
Any light-shedding on this is welcome because I'm really at a loss now...

-----Original Message-----
From: L'Hommelet Filip [mailto:Filip.L'Hommelet@ilias-solutions.com] 
Sent: donderdag 28 mei 2015 17:02
To: users@flex.apache.org
Subject: Deployed application: runtime: VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

There I was, thinking all was well...
Application builds in FB, runs locally.
Application builds completely in Maven (thank you Chris).

Application gets deployed to server after being packaged (just like we did before when on SDK4.1)
and when I run the application I get this error:

VerifyError: Error #1014: Class mx.core::UIComponent could not be found.

Followed by a bunch of other errors in the same genre.
We deploy on a weblogic.
I checked our EAR file and in the war that contains our app, there is a rsls-subfolder that contains all apache-framework related stuff
so in that regard, the file we upload looks pretty identical to the one we uploaded when still on SDK4.1 and FlexMojo3.8.

So I'm getting a feeling something is going wrong during compilation by maven.

Any ideas where I should start look first?

Kr,
Filip