Resource Bundle Problem

I have a funny problem with Resource Bundles:
In the property editor for a Hyperlink object I replaced the text property with the following: #{messages1.MyKey}
I have defined an action on the hyperlink as follows:
public String MyHyperlinkId_action ()
String HyperlinkText = (String)MyHyperlinkId.getText();
String HyperlinkID = MyHyperlinkId.getId();
return null;
getText() returns null since I use the Bundle to set the text. getId() returns the correct Id. If I hardcode the text in the property editor getText() returns that text correctly.
Any idea, what the problem could be??
Many thanks
Tom

Did you modify the hyperlink text property manually or through the property binding wizard. It could be a spelling mistake. Also make sure MyKey is defined in your resource bundle.

Similar Messages

  • Problem using Resource Bundle in XSLT File

    Hi All,
    I've been trying to use Resource Bundle on my XSLT file with no success for the last 2 weeks. So I would like some help to definitely end this problem.
    The fact is that i have a property file that i would like to read and it works fine when i use jsp or a servlet however when i try to call the same property file using my XSL i get the message below:
    java.util.MissingResourceException: Can't find bundle for base name thoth, locale en_US
    Follow the code from my Stylesheet that i'm calling the resource bundle:
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:java="java.util.ResourceBundle" exclude-result-prefixes="java" version="1.0">
    <xsl:strip-space elements="*"/>
    <xsl:output method="html" indent="yes" version="4.0"/>
    <xsl:output encoding="ISO-8859-1"/>
    <xsl:template match="page">
    <html>
    <body>
    <xsl:apply-templates select="paragraph"/>
    <xsl:variable name="resources" select="java:getBundle('thoth')"/>
    <xsl:value-of select="java:getString($resources,'general.title')"/>
    </body>
    </html>
    </xsl:template>
    </xsl:stylesheet>
    Please someone could help me why this file cannot be located, I am 100% of sure the property file path is in my classpath since it works fine in a servlet. Should i have to put it some other place? Do i have some other way to read this file and show the information from the file?
    I would appreciate any help
    thanks in advance and Regards
    Fabio

    Please someone could help me why this file cannot be located, I am 100% of sure the property file path is in my classpath since it works fine in a servlet.
    Is the property file in your classpath? or whether the directory where the property file is residing is in your classpath. Please put only the directory where the property file is located in the classpath and try again.
    It may be working fine with the servlet because j2ee servlet containers put the classes and lib directory automatically in the classpath therefore resource bundle gets loaded even without putting it explicitly in the classpath. This doesn't happen when you try to test some component from the console.
    Let me know if this does not work.
    regards,
    Abhishek.

  • Problem with resource bundle messages written inside script of jsf included

    Hi,
    I have a main jsf page with the name Details.jsp.In this page I included Contacts jsf page.I am using resouce bundle for my application.I written all the output text tags with this resouce bundle keys.And I written the Details main page javascript alerts with this resource bundle correctly.But the problem is,I am having script alrts in my included jsf apge i.e. in Contacts page.When I write the script alerts with the resource bundle keys,it is not displaying properly.
    ---------------------------------------------------------------------Details.jsp--------------------------------------
    <f:loadBundle basename="Details_en" var="msg"/>
    <f:view>
    <head>
    <script>
    function saveFn()
    var d=document.getElementById('dform:dinputtext').value;
    if(d=='')
    alert('<h:outputText value="#{msg.requiredValidationMsgkey}"/>');
    return false;
    if(emailValidation()==false)
    return false;
    </script>
    </head>
    <body>
    <h:form id="dform">
    <h:outputText value="#{msg.nameHeader}"/>
    <h:inputText value="#{Bean.name}" id="dinputtext"/>
    <jsp:include page="/Contacts.jsp"/>
    <h:commandButton value="Save" onclick="if(saveFn()==false) return false;" action="#{Bean.saveAction}"/>
    </h:form>
    </body>
    </f:view>
    -------------------------------------------------Contacts.jsp----------------------------------------
    <script>
    function emailValidation()
    var em= document.getElementById('dform:cSubView:cemailtext').value;
    if(em=='')
    alert('<h:outputText value="#{msg.emailValidationMsgKey}"/>');
    return false;
    </script>
    <f:subview id="cSubView">
    <h:inputText value="#{CBean.email}" id="cemailtext" />
    </f:subview>
    The alert message in SaveFn is getting appeared coorectly.But in the function emailValidation is not geting dispalyed correctly.It is appearing as normat output text in the page,but not as an alert.

    Thanks for the reply.
    But I want to do some validations using javascript not only the required validation.
    In my application 5 text fields and one command button are there .Depending upon combination of 2 or 3 text field values, I have to get the values when I pressed command button.
    If I use the h:messages for validators,the conversion error is occurring when the text field takes wrong data.So it is going to give incorrect results when I press the command button.Thats why I am using javascript.
    When user enters wrong data,I want to do validation using javascript and I want to display the alert message using resource bundle.

  • Problem with property resource bundles

    I use struts message resource to localize my jsp pages.
    struts message resources itself uses property resource bundles to
    accompolish its task.the problem arises when I try to
    print a message from resource bundle using:
    <bean:message bundle="messages_ir" key="label.username" />
    statement and my resource bundle file has a line like:
    label.username=\u0644\u0646 ,
    but it doesnot show the specified unicode characters. as i have understood it
    only uses the low order bytes in specifed unicdes (e.g \u0644=\u0044).
    plz help me!

    first did you try putting this at the top of the jsp page?
    <%
    page
    language="java"
    pageEncoding="utf-8"
    contentType="text/html;charset=utf-8"
    %>
    then, when using struts, you should also specify the locale:
    <html:html locale="true">
    </html:html>
    hope this helps

  • Problem refreshing resource bundle from DB table for BC (JDev 11.1.2.1.0)

    In our ADF 11.1.2.1.0 application we are loading bundles form the database, which is not working as expected.
    The problem is that when we want to refresh the bundle, it doesn't work for values on Model (BC) components. Bundles values stay the same.
    Bundle refresh was implemented by this example
    http://technology.amis.nl/2012/08/14/refresh-resource-bundle-from-within-the-adf-application-to-absorb-changes-in-database-backed-bundles/
    We then found that if we put f:loadBundle element on the page, the refresh does execute.
    But only for the ViewController, Model bundles do not refresh.
    On top of every page we have <f:loadBundle basename="si.bron.susa.view.util.ArsoVinBundle" var="res"/>
    On every page we also have a button. Click on it should refresh the bundle by calling the following code:
    public void forceBundleRefresh() {
    try {
    //ResourceBundle.clearCache();
    ResourceBundle.clearCache(Thread.currentThread().getContextClassLoader());
    sLog.info("Resourcebundle.clearCache executed succesfully.");
    } catch (Exception e) {
    sLog.info("Resourcebundle.clearCache cannot be used because jdk version is not 1.6 or higher, try old approach");
    System.out.println("Catch bundlov");
    // try old approach
    for (String resourcebundle : bundleNames) {
    for (String contextDimensionValue : contextDimensionValues) {
    String bundleName = resourcebundle + contextDimensionValue;
    System.out.println("Bundle123: "+ bundleName);
    refreshBundle(bundleName);
    } //for
    Executing this code the bundles of ViewController is always refreshed from DB, but bundles of BusinessComponents are refreshed ONLY FIRST TIME after application is deployed on WebLogic. Next attempts after the first one, don't perform refresh.
    I think it should behave same for BC and VC bundles, isn't it?
    If I am wrong please direct me to some example.
    Regards,
    Sašo Celarc

    In our ADF 11.1.2.1.0 application we are loading bundles form the database, which is not working as expected.
    The problem is that when we want to refresh the bundle, it doesn't work for values on Model (BC) components. Bundles values stay the same.
    Bundle refresh was implemented by this example
    http://technology.amis.nl/2012/08/14/refresh-resource-bundle-from-within-the-adf-application-to-absorb-changes-in-database-backed-bundles/
    We then found that if we put f:loadBundle element on the page, the refresh does execute.
    But only for the ViewController, Model bundles do not refresh.
    On top of every page we have <f:loadBundle basename="si.bron.susa.view.util.ArsoVinBundle" var="res"/>
    On every page we also have a button. Click on it should refresh the bundle by calling the following code:
    public void forceBundleRefresh() {
    try {
    //ResourceBundle.clearCache();
    ResourceBundle.clearCache(Thread.currentThread().getContextClassLoader());
    sLog.info("Resourcebundle.clearCache executed succesfully.");
    } catch (Exception e) {
    sLog.info("Resourcebundle.clearCache cannot be used because jdk version is not 1.6 or higher, try old approach");
    System.out.println("Catch bundlov");
    // try old approach
    for (String resourcebundle : bundleNames) {
    for (String contextDimensionValue : contextDimensionValues) {
    String bundleName = resourcebundle + contextDimensionValue;
    System.out.println("Bundle123: "+ bundleName);
    refreshBundle(bundleName);
    } //for
    Executing this code the bundles of ViewController is always refreshed from DB, but bundles of BusinessComponents are refreshed ONLY FIRST TIME after application is deployed on WebLogic. Next attempts after the first one, don't perform refresh.
    I think it should behave same for BC and VC bundles, isn't it?
    If I am wrong please direct me to some example.
    Regards,
    Sašo Celarc

  • Problem in using resource bundle in labels and error message

    Hi All,
    Anyone please help me to fix the problem.
    Actually i am using resource bundle for displaying labels in the jspx, since i developing the page for multilingual that's why i am using bundle in the label attribute.
    When i throw the validation error its displaying like this
    com.sun.faces.el.ValueBindingImpl@106cf24 - Value required.
    How can i fix the code in order display like this
    PO Number - Value required.
    Kindly provide the syntax and changes to be done or sample code.
    Thanks & Regards
    Vimalan Balan

    Hi,
    how do you throw the validation error? Are you adding the message explicitly or what doyou do ? Note that if you reference a binding in your validation then the binding needs to be referenced either by bindings.attr.label or bindings.attr.inputValue.
    Frank

  • Resource bundle UTF-8 encoding and Turkish special characters problem

    Hi dear developers,
    I'm developing a WebCenter Portal App in JDev 11.1.1.6.0 version. My project uses resource bundle for being multilingual. I have two bundles :
    1) <bundleName>_tr.properties (this the default one)
    2) <bundleName>_en.properties (this is the supported locale.)
    Now I have problem about the turkish characters in turkish bundle. When i run my project, it has a view just like this --> http://postimage.org/image/wr8nrm345/ (browser view) and http://postimage.org/image/3mf3fp2kl/ (bundleView)
    (Watch the "?" chars ! )
    You can see the bundle doesn't support Turkish special characters. How can i overcome with this problem?
    Thanks in advance.Regards
    erdo
    Edited by: erdo on 09.Oca.2013 17:24
    Edited by: erdo on 09.Oca.2013 17:25

    If you want to edit Unicode text resource you need a Unicode-aware text editor.
    You can search the Internet, but I had a good experience with Notepad++
    You may also ask in the JDeveloper forum ( JDeveloper and ADF ) if there is a way to resolve it. I found this: http://blog.newtrics.com/?p=242 , so I believe it may be possible somehow.

  • Problem with refresh resource bundle...

    Hi Iam refreshing the resource bundle. Iam using the following code:
    hsModelServiceProvider.getInstance().setFallbackBindingContainerEL("");
    JhsModelService jhsService = JhsModelServiceProvider.getInstance().getJhsModelService();
    System.out.print("UserId is :"+userId);
    jhsService.getTransaction().executeCommand("begin APP_USER_CTXT_mgr.set_user('"+userId+"');end;");
    System.out.print("after execute command");;
    // refresh resource bundle
    MethodBinding refreshBundles = FacesContext.getCurrentInstance().getApplication().createMethodBinding("#{nls.refreshBundles}",new Class[] { ActionEvent.class});
    refreshBundles.invoke(FacesContext.getCurrentInstance(),new Object[] {null});
    Iam gettin the following error Upon executing
    ERROR (MessageFactory) -Failed to refresh bundle oracle.jheadstart.exception.JhsUserMessages due to null
    Please help me..
    Thanx in Advance!

    Hi Steven,
    I want to personalise the ADF Application depending the userpreference. I got a tutorial which uses JHeadstart(through refreshing the resource bundle) for the same, but I did not understand that clearly as I said Iam new to this. Can you please give me any sources which speak about the personalisation functionality in detail?
    Thanq

  • File not found, Missing resource bundle

    Hi
    I have a problem in accessing files (XML and Resource bundles) in Java projects. I used to access these files in WD Java. The same piece of code does not work here.
    e.g. When I create a new file object by providing the path name I get a file not found exception. The file exists in my package and I call it this way:
    File f = new File("file.txt"); then in an input stream but it doesnt work. However in a J2EE project the same code works.
    Similarly the resouce bundle never seems to work even if I give the fully classified class name for the property file. I can access property files in WD Java with ease. I understand that the root path changes and hence the problem. How should I solve it? Is there an elegant way which makes it work in all cases? Please throw some light on the root path for these projects. Thank you.
    regards
    LNV
    Edited by: vln on Jan 16, 2008 9:34 AM

    You should be using
    <b>this.getClass().getResourceAsStream(filePath)</b>
    which will return you an InputStream.
    Check the JDK documentation for the respective methods in java.lang.Class and java.lang.ClassLoader.
    HTH!
    \-- Vladimir

  • [ERROR] could not find source for resource bundle modules.

    We are in the process of upgrading our flex application from SDK3.6 to SDK4.5.0.17899.
    Flexmojos version used for compilation is 3.9.
    The flex library project is complied with SDK4.5.0 version but BUILD is not getting SUCESS from maven.
    The following is the reason is showing and unable to find out the root cause.
    [ERROR] could not find source for resource bundle modules.
    Can you please help me out.
    Thanks,

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

  • Error: could not find source for resource bundle charts

    I am trying to upgrade from Flex SDk 3.4 to 3.5.
    I have copied the Data Visualisation SWCs under libs, locale and rlsls folders as suggested by adobe.
    I get the following error when building the application
    flex-library:
         [java] Loading configuration file /usr/local/lib/flex_sdk/3.5.0/frameworks/flex-config.xml
         [java] Error: could not find source for resource bundle charts.
         [java]
    What am I missing? Any help is highly appreciated.
    Thanks

    Copying
    /Software/FB\ Eclipse\ Plugin/Adobe\ Flex\ Builder\ 3\ Plug-in/sdks/2.0.1/frameworks/locale/en_US/charts_rb.swc into
    the 3.5 SDK directory
    /usr/local/lib/flex_sdk/3.5.0/frameworks/locale/en_US
    solves the problem.
    Not sure why as the charts_rb.swc comes from Flex 2.0

  • Resource bundle not found in adapter ear file

              Hi,
              I have an ear file which contains a JCA adapter and a resource bundle properties
              file in a jar file. THis jar file is referenced by the rar file. After deploying
              it, the server generates an resource bundle not found exception. The only way
              to make it deploy is to put my adatper jar to the global classpath. This is not
              consistent with EJB deployment. I tested an ear file that contains an EJB jar
              with contains a resource bundle. The server is able to load the resource file
              from the EJB jar as I would expect. Any comments on that? By the way, I tested
              on WLS 6.1 sp1 and sp2. Thanks.
              Siming
              

              I am having the same problem. Is anything going to be done to fix this?
              "Siming Mu" <[email protected]> wrote:
              >
              >Hi,
              >
              >I have an ear file which contains a JCA adapter and a resource bundle
              >properties
              >file in a jar file. THis jar file is referenced by the rar file. After
              >deploying
              >it, the server generates an resource bundle not found exception. The
              >only way
              >to make it deploy is to put my adatper jar to the global classpath. This
              >is not
              >consistent with EJB deployment. I tested an ear file that contains an
              >EJB jar
              >with contains a resource bundle. The server is able to load the resource
              >file
              >from the EJB jar as I would expect. Any comments on that? By the way,
              >I tested
              >on WLS 6.1 sp1 and sp2. Thanks.
              >
              >Siming
              

  • Flex 4.1 to 4.5.1 "Could not find compiled resource bundle 'controls' for locale 'en_US'."

    I have a flex 4.1 project in which I want to use the latest spark datagrid changes in so am trying to update to 4.5
    Having downloaded and added the sdk, switching the properties of my project and updating my datagrid skin classes to suit the latest changes I'm now getting the following error when trying to run my app:
    Error: Could not find compiled resource bundle 'controls' for locale 'en_US'.
    at mx.resources::ResourceManagerImpl/installCompiledResourceBundle()[E:\dev\4.5.1\frameworks \projects\framework\src\mx\resources\ResourceManagerImpl.as:367]
    at mx.resources::ResourceManagerImpl/installCompiledResourceBundles()[E:\dev\4.5.1\framework s\projects\framework\src\mx\resources\ResourceManagerImpl.as:287]
    at mx.core::FlexModuleFactory/installCompiledResourceBundles()[E:\dev\4.5.1\frameworks\proje cts\framework\src\mx\core\FlexModuleFactory.as:709]
    at mx.core::FlexModuleFactory/docFrameHandler()[E:\dev\4.5.1\frameworks\projects\framework\s rc\mx\core\FlexModuleFactory.as:679]
    at mx.core::FlexModuleFactory/docFrameListener()[E:\dev\4.5.1\frameworks\projects\framework\ src\mx\core\FlexModuleFactory.as:131]
    I believe this is whilst trying to load a module as the first thing the app does is load a login module.
    Any suggestions as to what I need to do to sort this out?
    Cheers,
    Dan

    Hi,
    I'm taking this issue over as DannyT is away this week.
    I have checked we are compiling all SWC's with 4.5.1 and it appears to be the case although we are using third party compiled SWC's for RobotLegs, Signals and some flash skins which I'm assuming wouldn't be an issue?
    I've carried out comprehensive testing to narrow the problem down, I found that mx.controls.Image seemed to be causing some of the issues, when replaced with the spark Image the module was loading fine although I now then had an issue with the mx charting components so added a reference to the main app, as you say not the best work around and I'm still getting the same issue:
    Error: Could not find compiled resource bundle 'controls' for locale 'en_US'.
    We have other mx components in our modules and these seem to be fine although I haven't checked to see if they are being used throughout the app so they might be referenced in main. I've posted the link report xml below, any help or suggestions would be appreciated as we'd like to be able to use the latest version of the DataGrid.
    <report>
      <scripts>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:TextRemoteObject)" mod="1294231234000" size="1531" optimizedsize="836">
          <def id="com.my.app.remoting:TextRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ITextRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:ICachableRemoteObject)" mod="1294229901000" size="1206" optimizedsize="316">
          <def id="com.my.app.remoting.interfaces:ICachableRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_TreeDisclosureClosed_699467254.as" mod="1306854026000" size="623" optimizedsize="370">
          <def id="_class_embed_css_Assets_swf_1422583548_TreeDisclosureClosed_699467254" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/QueryBuilderModuleLoader.as" mod="1308837418000" size="3337" optimizedsize="1844">
          <def id="com.my.app.loader:QueryBuilderModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="com.my.app.vo:User" />
          <dep id="com.my.app.vo:Query" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="com.my.app.module.queryBuilder:IQueryBuilderModule" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:JournalistRemoteObject)" mod="1292428848000" size="1187" optimizedsize="730">
          <def id="com.my.app.remoting:JournalistRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IJournalistRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/MYAppPro.mxml" mod="1309189518000" size="7534" optimizedsize="6376">
          <def id="MYAppPro" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="mx.binding:IBindingClient" />
          <pre id="com.my.app:MYAppProApp" />
          <dep id="_MYAppProWatcherSetupUtil" />
          <dep id="mx.styles:CSSSelector" />
          <dep id="mx.styles:CSSStyleDeclaration" />
          <dep id="mx.core:DeferredInstanceFromFunction" />
          <dep id="com.my.app.context:MYAppProContext" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="mx.core:mx_internal" />
          <dep id="MYAppPro__embed__font_MyriadPro_bold_normal_1315605509" />
          <dep id="mx.binding:IWatcherSetupUtil2" />
          <dep id="mx.binding:BindingManager" />
          <dep id="com.my.app.view:MainView" />
          <dep id="mx.styles:CSSCondition" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="AS3" />
          <dep id="mx.binding:Binding" />
          <dep id="_MYAppPro_FlexInit" />
          <dep id="_MYAppPro_Styles" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="MYAppPro__embed__font_MyriadPro_medium_normal_1029366919" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.events:ModuleEvent)" mod="1306872054062" size="1244" optimizedsize="729">
          <def id="mx.events:ModuleEvent" />
          <pre id="flash.events:ProgressEvent" />
          <dep id="flash.events:Event" />
          <dep id="mx.modules:IModuleInfo" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:DashboardRemoteObject)" mod="1308837429000" size="2518" optimizedsize="1400">
          <def id="com.my.app.remoting:DashboardRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IDashboardRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="com.my.app.vo:Dashboard" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders:Reflector)" mod="1272837850000" size="2141" optimizedsize="1490">
          <def id="org.swiftsuspenders:Reflector" />
          <pre id="Object" />
          <dep id="org.swiftsuspenders:getConstructor" />
          <dep id="flash.utils:describeType" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="AS3" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="XML" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="Error" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:DPIClassification)" mod="1306872039593" size="480" optimizedsize="256">
          <def id="mx.core:DPIClassification" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.resources:IResourceManager)" mod="1306872057390" size="3482" optimizedsize="1039">
          <def id="mx.resources:IResourceManager" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="Object" />
          <dep id="flash.system:SecurityDomain" />
          <dep id="AS3" />
          <dep id="mx.resources:IResourceBundle" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders:getConstructor)" mod="1272837850000" size="577" optimizedsize="339">
          <def id="org.swiftsuspenders:getConstructor" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="String" />
          <dep id="AS3" />
          <dep id="Number" />
          <dep id="Class" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="Object" />
          <dep id="flash.utils:Proxy" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/LoginModuleLoader.as" mod="1291226946000" size="903" optimizedsize="583">
          <def id="com.my.app.loader:LoginModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/DashboardModuleLoader.as" mod="1309186845000" size="3451" optimizedsize="1923">
          <def id="com.my.app.loader:DashboardModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="com.my.app.vo:Dashboard" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="com.my.app.vo:User" />
          <dep id="com.my.app.vo:Query" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="com.my.app.module.dashboard:IDashboardModule" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:EmbeddedFontRegistry)" mod="1306872041202" size="5403" optimizedsize="3296">
          <def id="mx.core:EmbeddedFontRegistry" />
          <pre id="mx.core:IEmbeddedFontRegistry" />
          <pre id="Object" />
          <dep id="mx.core:EmbeddedFont" />
          <dep id="flash.text:FontStyle" />
          <dep id="trace" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.resources:ResourceManager" />
          <dep id="Error" />
          <dep id="mx.resources:IResourceManager" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="mx.managers:ISystemManager" />
          <dep id="flash.text.engine:FontDescription" />
          <dep id="flash.text:TextFormat" />
          <dep id="AS3" />
          <dep id="flash.text:TextField" />
          <dep id="flash.system:Capabilities" />
          <dep id="mx.core:Singleton" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_CloseButtonUp_904206584.as" mod="1306854026000" size="601" optimizedsize="363">
          <def id="_class_embed_css_Assets_swf_1422583548_CloseButtonUp_904206584" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/airframework_rb.swc$locale/en_US/SharedResources.properties" mod="1306854100000" size="638" optimizedsize="603">
          <def id="en_US$SharedResources_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/skins/PopupSkin.mxml" mod="1308837418000" size="4789" optimizedsize="3018">
          <def id="com.my.app.skins:PopupSkin" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="spark.components.supportClasses:Skin" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="spark.primitives:Rect" />
          <dep id="spark.layouts:VerticalLayout" />
          <dep id="mx.states:SetProperty" />
          <dep id="AS3" />
          <dep id="mx.graphics:SolidColor" />
          <dep id="mx.states:State" />
          <dep id="mx.core:mx_internal" />
          <dep id="spark.components:Group" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="spark.components:SkinnableContainer" />
          <dep id="mx.binding:BindingManager" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.base:ContextEvent)" mod="1269791984000" size="933" optimizedsize="480">
          <def id="org.robotlegs.base:ContextEvent" />
          <pre id="flash.events:Event" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:QuerySnippet)" mod="1294750696000" size="723" optimizedsize="315">
          <def id="com.my.app.vo:QuerySnippet" />
          <pre id="com.my.app.vo:RevertableVO" />
          <dep id="Date" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:IRSSPodRemoteObject)" mod="1294221810000" size="1230" optimizedsize="371">
          <def id="com.my.app.remoting.interfaces:IRSSPodRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
          <dep id="com.my.app.vo:RSSPod" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:MethodInjectionPoint)" mod="1273448582000" size="2862" optimizedsize="1766">
          <def id="org.swiftsuspenders.injectionpoints:MethodInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:InjectionPoint" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="org.swiftsuspenders:InjectionConfig" />
          <dep id="org.swiftsuspenders:InjectorError" />
          <dep id="AS3" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="Error" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/component/loader/TimeLineLoaderWrapper.as" mod="1294835157000" size="2360" optimizedsize="1421">
          <def id="com.my.app.component.loader:TimeLineLoaderWrapper" />
          <pre id="mx.core:UIComponent" />
          <pre id="com.my.app.component.loader:ILoaderController" />
          <dep id="AS3" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="Math" />
          <dep id="TimeLineLoader" />
          <dep id="flash.display:MovieClip" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragCopy_1279468729.as" mod="1306854026000" size="638" optimizedsize="375">
          <def id="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragCopy_1279468729" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/framework_rb.swc$locale/en_US/logging.properties" mod="1306854100000" size="735" optimizedsize="704">
          <def id="en_US$logging_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.action:FeedbackAsyncAction)" mod="1294328487000" size="955" optimizedsize="396">
          <def id="com.my.app.action:FeedbackAsyncAction" />
          <pre id="com.my.app.action:AsyncAction" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionresults:InjectClassResult)" mod="1272837850000" size="871" optimizedsize="450">
          <def id="org.swiftsuspenders.injectionresults:InjectClassResult" />
          <pre id="org.swiftsuspenders.injectionresults:InjectionResult" />
          <dep id="AS3" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/framework_rb.swc$locale/en_US/modules.properties" mod="1306854100000" size="310" optimizedsize="284">
          <def id="en_US$modules_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/skins/RoundedCornerTextInputSkin.mxml" mod="1308839963000" size="8920" optimizedsize="5730">
          <def id="com.my.app.skins:RoundedCornerTextInputSkin" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="mx.binding:IBindingClient" />
          <pre id="spark.skins:SparkSkin" />
          <dep id="spark.primitives:Rect" />
          <dep id="spark.components:TextInput" />
          <dep id="_com_my_app_skins_RoundedCornerTextInputSkinWatcherSetupUtil" />
          <dep id="Number" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:IWatcherSetupUtil2" />
          <dep id="mx.binding:BindingManager" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="mx.states:SetProperty" />
          <dep id="AS3" />
          <dep id="spark.components:RichEditableText" />
          <dep id="mx.binding:Binding" />
          <dep id="mx.graphics:SolidColor" />
          <dep id="mx.states:State" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="mx.graphics:SolidColorStroke" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.mvcs:Context)" mod="1273448146000" size="3618" optimizedsize="1909">
          <def id="org.robotlegs.mvcs:Context" />
          <pre id="org.robotlegs.core:IContext" />
          <pre id="org.robotlegs.base:ContextBase" />
          <dep id="flash.events:Event" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="org.robotlegs.base:EventMap" />
          <dep id="org.robotlegs.core:IReflector" />
          <dep id="org.robotlegs.base:CommandMap" />
          <dep id="org.robotlegs.core:IInjector" />
          <dep id="org.robotlegs.core:ICommandMap" />
          <dep id="org.robotlegs.core:IMediatorMap" />
          <dep id="AS3" />
          <dep id="org.robotlegs.base:ViewMap" />
          <dep id="org.robotlegs.core:IEventMap" />
          <dep id="org.robotlegs.base:ContextEvent" />
          <dep id="org.robotlegs.base:MediatorMap" />
          <dep id="org.robotlegs.adapters:SwiftSuspendersInjector" />
          <dep id="org.robotlegs.core:IViewMap" />
          <dep id="org.robotlegs.adapters:SwiftSuspendersReflector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/component/dashboardTitleAlert/DashboardTitleAlert.as" mod="1295255816000" size="2526" optimizedsize="1401">
          <def id="com.my.app.component.dashboardTitleAlert:DashboardTitleAlert" />
          <pre id="com.my.app.component.dashboardTitleAlert:DashboardTitleAlertMarkup" />
          <dep id="flash.events:MouseEvent" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="mx.utils:StringUtil" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.manager:ModalPopupManager" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:SourceRemoteObject)" mod="1292434523000" size="1141" optimizedsize="707">
          <def id="com.my.app.remoting:SourceRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ISourceRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:CustomerFileRemoteObject)" mod="1294750696000" size="1543" optimizedsize="892">
          <def id="com.my.app.remoting:CustomerFileRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ICustomerFileRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:PostConstructInjectionPoint)" mod="1272837850000" size="1648" optimizedsize="894">
          <def id="org.swiftsuspenders.injectionpoints:PostConstructInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:InjectionPoint" />
          <dep id="AS3" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/flash_assets.swc(TimeLineLoader)" mod="1294834686125" size="433" optimizedsize="285">
          <def id="TimeLineLoader" />
          <pre id="flash.display:MovieClip" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:RSLListLoader)" mod="1306872040218" size="2217" optimizedsize="1111">
          <def id="mx.core:RSLListLoader" />
          <pre id="Object" />
          <dep id="flash.events:Event" />
          <dep id="mx.core:RSLItem" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_mx_containers_FormItem_Required_1292455008.as" mod="1306854026000" size="659" optimizedsize="382">
          <def id="_class_embed_css_Assets_swf_1422583548_mx_containers_FormItem_Required_1292455008" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_cursorStretch_1000132270.as" mod="1306854026000" size="604" optimizedsize="364">
          <def id="_class_embed_css_Assets_swf_1422583548_cursorStretch_1000132270" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/component/dashboardTitleAlert/DashboardTitleAlertMarkup.mxml" mod="1308837414000" size="5656" optimizedsize="3011">
          <def id="com.my.app.component.dashboardTitleAlert:DashboardTitleAlertMarkup" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="spark.components:Group" />
          <dep id="spark.components:TextInput" />
          <dep id="mx.core:DeferredInstanceFromFunction" />
          <dep id="com.my.app.skins:RoundedCornerTextInputSkin" />
          <dep id="spark.components:Button" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:BindingManager" />
          <dep id="com.my.app.skins:PopupSkin" />
          <dep id="spark.components:SkinnableContainer" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="spark.components:Label" />
          <dep id="spark.layouts:VerticalLayout" />
          <dep id="AS3" />
          <dep id="com.my.app.skins:SilverButtonSkin" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="spark.components:HGroup" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/as3-signals.swc(org.osflash.signals:Slot)" mod="1291821251505" size="1267" optimizedsize="611">
          <def id="org.osflash.signals:Slot" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="org.osflash.signals:ISignal" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.utils:NameUtil)" mod="1306872046765" size="1669" optimizedsize="1094">
          <def id="mx.utils:NameUtil" />
          <pre id="Object" />
          <dep id="mx.core:IRepeaterClient" />
          <dep id="SecurityError" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="AS3" />
          <dep id="flash.display:DisplayObject" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:CacheVO)" mod="1292345880000" size="457" optimizedsize="239">
          <def id="com.my.app.vo:CacheVO" />
          <pre id="Object" />
          <dep id="mx.utils:UIDUtil" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/view/MainView.as" mod="1309190212000" size="5727" optimizedsize="3612">
          <def id="com.my.app.view:MainView" />
          <pre id="com.my.app.view:MainViewMarkup" />
          <dep id="com.my.app.vo:User" />
          <dep id="spark.components:TextInput" />
          <dep id="com.my.app.loader:HelpTextModuleLoader" />
          <dep id="flash.printing:PrintJobOptions" />
          <dep id="flash.printing:PrintJobOrientation" />
          <dep id="flash.geom:Rectangle" />
          <dep id="Math" />
          <dep id="mx.charts.chartClasses:ChartLabel" />
          <dep id="com.my.app.manager:ModalPopupManager" />
          <dep id="spark.components:Group" />
          <dep id="com.my.app.vo:QuerySnippet" />
          <dep id="com.my.app.enum:MenuTypes" />
          <dep id="flash.printing:PrintJob" />
          <dep id="AS3" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="com.my.app.component.printPopUp:PrintPopUp" />
          <dep id="com.my.app:IMYAppPropApp" />
          <dep id="com.my.app.enum:TextServiceNames" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.resources:LocaleSorter)" mod="1306872057312" size="9921" optimizedsize="6854">
          <def id="mx.resources:LocaleSorter" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/spark_rb.swc$locale/en_US/components.properties" mod="1306853870000" size="4153" optimizedsize="4083">
          <def id="en_US$components_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.delegate.remoting:QueryPodDelegate)" mod="1294681144000" size="1591" optimizedsize="852">
          <def id="com.my.app.delegate.remoting:QueryPodDelegate" />
          <pre id="com.my.app.delegate.interfaces:IQueryPodDelegate" />
          <pre id="com.my.app.delegate.remoting:BaseDelegate" />
          <dep id="com.my.app.vo:DashboardPod" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
          <dep id="com.my.app.remoting.interfaces:IQueryPodRemoteObject" />
          <dep id="com.my.app.vo:QueryPod" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:CompetitorsQueryResult)" mod="1295458204000" size="619" optimizedsize="267">
          <def id="com.my.app.vo:CompetitorsQueryResult" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="com.my.app.vo:Competitor" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:ConstructorInjectionPoint)" mod="1272837850000" size="3351" optimizedsize="2412">
          <def id="org.swiftsuspenders.injectionpoints:ConstructorInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:MethodInjectionPoint" />
          <dep id="flash.utils:describeType" />
          <dep id="AS3" />
          <dep id="trace" />
          <dep id="XML" />
          <dep id="XMLList" />
          <dep id="Error" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/AdminModuleLoader.as" mod="1291226946000" size="901" optimizedsize="583">
          <def id="com.my.app.loader:AdminModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/view/MainViewMarkup.mxml" mod="1308837418000" size="9261" optimizedsize="6130">
          <def id="com.my.app.view:MainViewMarkup" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="mx.binding:IBindingClient" />
          <pre id="spark.components:Group" />
          <dep id="com.my.app.component.loader:TimeLineLoaderWrapper" />
          <dep id="com.my.app.loader:LoginModuleLoader" />
          <dep id="com.my.app.loader:DashboardModuleLoader" />
          <dep id="spark.components:VGroup" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:IWatcherSetupUtil2" />
          <dep id="mx.binding:BindingManager" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="mx.states:SetProperty" />
          <dep id="spark.layouts:VerticalLayout" />
          <dep id="com.my.app.loader:HeaderModuleLoader" />
          <dep id="AS3" />
          <dep id="mx.binding:Binding" />
          <dep id="com.my.app.loader:AdminModuleLoader" />
          <dep id="com.my.app.loader:QueryBuilderModuleLoader" />
          <dep id="mx.states:State" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="com.my.app.component.loader:ILoaderController" />
          <dep id="mx.events:PropertyChangeEvent" />
          <dep id="_com_my_app_view_MainViewMarkupWatcherSetupUtil" />
          <dep id="com.my.app.loader:FeedbackModuleLoader" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders:InjectionConfig)" mod="1272837850000" size="1296" optimizedsize="632">
          <def id="org.swiftsuspenders:InjectionConfig" />
          <pre id="Object" />
          <dep id="org.swiftsuspenders.injectionresults:InjectionResult" />
          <dep id="AS3" />
          <dep id="org.swiftsuspenders:Injector" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:ITextRemoteObject)" mod="1292345880000" size="419" optimizedsize="160">
          <def id="com.my.app.remoting.interfaces:ITextRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ICachableRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:MediaSummaryPod)" mod="1308837429000" size="711" optimizedsize="345">
          <def id="com.my.app.vo:MediaSummaryPod" />
          <pre id="com.my.app.vo:RevertableVO" />
          <dep id="Date" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.swiftsuspenders.injectionpoints:NoParamsConstructorInjectionPoint)" mod="1272837850000" size="770" optimizedsize="321">
          <def id="org.swiftsuspenders.injectionpoints:NoParamsConstructorInjectionPoint" />
          <pre id="org.swiftsuspenders.injectionpoints:InjectionPoint" />
          <dep id="AS3" />
        </script>
        <script name="_MYAppPro_FlexInit-generated.as" mod="1309190215865" size="13205" optimizedsize="11952">
          <def id="_MYAppPro_FlexInit" />
          <pre id="Object" />
          <dep id="mx.messaging.messages:MessagePerformanceInfo" />
          <dep id="com.my.app.vo:TextMessage" />
          <dep id="com.my.app.vo:Category" />
          <dep id="en_US$components_properties" />
          <dep id="com.my.app.vo:QuerySnippet" />
          <dep id="en_US$formatters_properties" />
          <dep id="en_US$logging_properties" />
          <dep id="mx.messaging.messages:AsyncMessageExt" />
          <dep id="mx.utils:ObjectProxy" />
          <dep id="en_US$sparkEffects_properties" />
          <dep id="en_US$SharedResources_properties" />
          <dep id="com.my.app.vo:Query" />
          <dep id="mx.managers:SystemManagerGlobals" />
          <dep id="en_US$collections_properties" />
          <dep id="com.my.app.vo:CustomerSnippet" />
          <dep id="com.my.app.vo:User" />
          <dep id="mx.messaging.messages:AcknowledgeMessage" />
          <dep id="en_US$modules_properties" />
          <dep id="com.my.app.vo:MediaType" />
          <dep id="en_US$core_properties" />
          <dep id="com.my.app.vo:Dashboard" />
          <dep id="flash.net:registerClassAlias" />
          <dep id="mx.effects:EffectManager" />
          <dep id="flash.net:getClassByAlias" />
          <dep id="mx.messaging.messages:RemotingMessage" />
          <dep id="com.my.app.vo:Journalist" />
          <dep id="com.my.app.vo:TextPod" />
          <dep id="mx.messaging.config:ConfigMap" />
          <dep id="mx.messaging.messages:ErrorMessage" />
          <dep id="en_US$rpc_properties" />
          <dep id="mx.messaging.messages:CommandMessageExt" />
          <dep id="mx.collections:ArrayList" />
          <dep id="com.my.app.vo:QueryResultElement" />
          <dep id="com.my.app.vo:MediaOutlet" />
          <dep id="mx.managers.systemClasses:ChildManager" />
          <dep id="mx.messaging.messages:CommandMessage" />
          <dep id="en_US$containers_properties" />
          <dep id="mx.core:TextFieldFactory" />
          <dep id="mx.core:mx_internal" />
          <dep id="com.my.app.vo:RSSPod" />
          <dep id="mx.resources:ResourceManager" />
          <dep id="com.my.app.vo:QueryPod" />
          <dep id="com.my.app.vo:CompetitorsQueryResult" />
          <dep id="en_US$layout_properties" />
          <dep id="mx.messaging.messages:AcknowledgeMessageExt" />
          <dep id="AS3" />
          <dep id="com.my.app.vo:Competitor" />
          <dep id="en_US$messaging_properties" />
          <dep id="en_US$osmf_properties" />
          <dep id="mx.styles:StyleManagerImpl" />
          <dep id="en_US$textLayout_properties" />
          <dep id="com.my.app.vo:UserSnippet" />
          <dep id="en_US$skins_properties" />
          <dep id="trace" />
          <dep id="com.my.app.vo:Source" />
          <dep id="Error" />
          <dep id="en_US$charts_properties" />
          <dep id="en_US$styles_properties" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="mx.collections:ArrayCollection" />
          <dep id="com.my.app.vo:DashboardPod" />
          <dep id="com.my.app.vo:MediaSummaryItem" />
          <dep id="en_US$effects_properties" />
          <dep id="com.my.app.vo:CustomerFile" />
          <dep id="com.my.app.vo:MediaSummaryPod" />
          <dep id="mx.styles:IStyleManager2" />
          <dep id="com.my.app.vo:Customer" />
          <dep id="mx.messaging.messages:AsyncMessage" />
        </script>
        <script name="MYAppPro__embed__font_MyriadPro_bold_normal_1315605509.as" mod="1291226943000" size="442" optimizedsize="224">
          <def id="MYAppPro__embed__font_MyriadPro_bold_normal_1315605509" />
          <pre id="mx.core:FontAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/BaseModuleLoader.as" mod="1309175195000" size="3243" optimizedsize="1970">
          <def id="com.my.app.loader:BaseModuleLoader" />
          <pre id="mx.modules:ModuleLoader" />
          <dep id="org.robotlegs.utilities.modular.core:IModule" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.component.loader:ILoaderController" />
          <dep id="mx.events:FlexEvent" />
          <dep id="com.my.app.manager:ModalPopupManager" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="com.my.app:IMYAppPropApp" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/skins/LinkButtonSkin.mxml" mod="1308837418000" size="5134" optimizedsize="3986">
          <def id="com.my.app.skins:LinkButtonSkin" />
          <pre id="mx.core:IStateClient2" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="spark.components.supportClasses:Skin" />
          <dep id="mx.styles:CSSSelector" />
          <dep id="mx.states:AddItems" />
          <dep id="spark.primitives:Rect" />
          <dep id="mx.styles:CSSStyleDeclaration" />
          <dep id="mx.core:DeferredInstanceFromFunction" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.binding:BindingManager" />
          <dep id="mx.styles:CSSCondition" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="spark.components:Label" />
          <dep id="mx.states:SetProperty" />
          <dep id="AS3" />
          <dep id="mx.graphics:SolidColor" />
          <dep id="mx.states:State" />
          <dep id="mx.events:PropertyChangeEvent" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:QueryRemoteObject)" mod="1297076409000" size="2734" optimizedsize="1455">
          <def id="com.my.app.remoting:QueryRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IQueryRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="com.my.app.vo:Query" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:RSLData)" mod="1306872040468" size="1658" optimizedsize="839">
          <def id="mx.core:RSLData" />
          <pre id="Object" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="AS3" />
          <dep id="mx.core:mx_internal" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:MediaOutletRemoteObject)" mod="1292429834000" size="1193" optimizedsize="733">
          <def id="com.my.app.remoting:MediaOutletRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IMediaOutletRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:DashboardPodRemoteObject)" mod="1295255883000" size="1770" optimizedsize="996">
          <def id="com.my.app.remoting:DashboardPodRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IDashboardPodRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="com.my.app.vo:DashboardPod" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:IEmbeddedFontRegistry)" mod="1306872039202" size="1261" optimizedsize="440">
          <def id="mx.core:IEmbeddedFontRegistry" />
          <pre id="Object" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="mx.core:EmbeddedFont" />
          <dep id="mx.managers:ISystemManager" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/textLayout_rb.swc$locale/en_US/textLayout.properties" mod="1306853916000" size="1656" optimizedsize="1609">
          <def id="en_US$textLayout_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.core:ICommandMap)" mod="1271434072000" size="1242" optimizedsize="376">
          <def id="org.robotlegs.core:ICommandMap" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.resources:ResourceManagerImpl)" mod="1306872057374" size="12831" optimizedsize="6861">
          <def id="mx.resources:ResourceManagerImpl" />
          <pre id="mx.resources:IResourceManager" />
          <pre id="flash.events:EventDispatcher" />
          <pre id="Object" />
          <dep id="flash.events:Event" />
          <dep id="mx.resources:LocaleSorter" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="mx.resources:IResourceModule" />
          <dep id="trace" />
          <dep id="mx.utils:StringUtil" />
          <dep id="mx.resources:ResourceBundle" />
          <dep id="mx.core:mx_internal" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="Error" />
          <dep id="mx.modules:ModuleManager" />
          <dep id="mx.modules:IModuleInfo" />
          <dep id="flash.system:SecurityDomain" />
          <dep id="AS3" />
          <dep id="mx.resources:IResourceBundle" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="flash.system:Capabilities" />
          <dep id="mx.events:ResourceEvent" />
          <dep id="flash.utils:Timer" />
          <dep id="flash.events:FocusEvent" />
          <dep id="flash.events:TimerEvent" />
          <dep id="mx.events:FlexEvent" />
          <dep id="mx.managers:SystemManagerGlobals" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/osmf_rb.swc$locale/en_US/osmf.properties" mod="1306854146000" size="3751" optimizedsize="3676">
          <def id="en_US$osmf_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting.interfaces:IMediaTypeRemoteObject)" mod="1308837429000" size="868" optimizedsize="291">
          <def id="com.my.app.remoting.interfaces:IMediaTypeRemoteObject" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.adapters:SwiftSuspendersInjector)" mod="1273448758000" size="1624" optimizedsize="1129">
          <def id="org.robotlegs.adapters:SwiftSuspendersInjector" />
          <pre id="org.robotlegs.core:IInjector" />
          <pre id="org.swiftsuspenders:Injector" />
          <dep id="AS3" />
          <dep id="XML" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.managers:SystemManager)" mod="1306872044452" size="36322" optimizedsize="20571">
          <def id="mx.managers:SystemManager" />
          <pre id="mx.core:IFlexModuleFactory" />
          <pre id="mx.managers:ISystemManager" />
          <pre id="mx.core:IChildList" />
          <pre id="mx.core:IFlexDisplayObject" />
          <pre id="flash.display:MovieClip" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="Math" />
          <dep id="flash.display:LoaderInfo" />
          <dep id="mx.core:IUIComponent" />
          <dep id="flash.system:ApplicationDomain" />
          <dep id="mx.events:SandboxMouseEvent" />
          <dep id="mx.managers:SystemRawChildrenList" />
          <dep id="flash.text:TextFormat" />
          <dep id="flash.display:Graphics" />
          <dep id="flash.events:TimerEvent" />
          <dep id="mx.managers:SystemManagerGlobals" />
          <dep id="flash.display:StageAlign" />
          <dep id="flash.display:Sprite" />
          <dep id="mx.utils:LoaderUtil" />
          <dep id="mx.preloaders:Preloader" />
          <dep id="flash.geom:Rectangle" />
          <dep id="mx.events:RSLEvent" />
          <dep id="flash.display:Loader" />
          <dep id="flash.geom:Point" />
          <dep id="mx.managers:SystemChildrenList" />
          <dep id="flash.events:MouseEvent" />
          <dep id="flash.text:Font" />
          <dep id="flash.display:DisplayObject" />
          <dep id="flash.display:Stage" />
          <dep id="flash.events:Event" />
          <dep id="flash.ui:Keyboard" />
          <dep id="mx.events:DynamicEvent" />
          <dep id="ArgumentError" />
          <dep id="mx.core:IRawChildrenContainer" />
          <dep id="QName" />
          <dep id="flash.events:KeyboardEvent" />
          <dep id="mx.core:mx_internal" />
          <dep id="mx.core:FlexSprite" />
          <dep id="flash.display:StageQuality" />
          <dep id="mx.core:RSLItem" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="mx.core:RSLData" />
          <dep id="mx.events:Request" />
          <dep id="AS3" />
          <dep id="__AS3__.vec:Vector" />
          <dep id="mx.core:Singleton" />
          <dep id="mx.utils:DensityUtil" />
          <dep id="mx.events:FlexEvent" />
          <dep id="flash.utils:Dictionary" />
          <dep id="flash.display:StageScaleMode" />
          <dep id="SecurityError" />
          <dep id="mx.core:IInvalidating" />
          <dep id="Error" />
          <dep id="flash.utils:Timer" />
          <dep id="flash.events:FocusEvent" />
          <dep id="mx.managers:ISystemManagerChildManager" />
        </script>
        <script name="_class_embed_css_assets_CalendarIcon_png__1170248551_1839914564.as" mod="1306854026000" size="550" optimizedsize="314">
          <def id="_class_embed_css_assets_CalendarIcon_png__1170248551_1839914564" />
          <pre id="mx.core:BitmapAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.managers:SystemRawChildrenList)" mod="1306872045187" size="2326" optimizedsize="1198">
          <def id="mx.managers:SystemRawChildrenList" />
          <pre id="mx.core:IChildList" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="flash.display:DisplayObject" />
          <dep id="mx.managers:SystemManager" />
          <dep id="mx.core:mx_internal" />
          <dep id="flash.geom:Point" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/airframework_rb.swc$locale/en_US/effects.properties" mod="1306854100000" size="401" optimizedsize="374">
          <def id="en_US$effects_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548___brokenImage_184772295.as" mod="1306854026000" size="601" optimizedsize="363">
          <def id="_class_embed_css_Assets_swf_1422583548___brokenImage_184772295" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:ResourceModuleRSLItem)" mod="1306872039609" size="2015" optimizedsize="1281">
          <def id="mx.core:ResourceModuleRSLItem" />
          <pre id="mx.core:RSLItem" />
          <dep id="mx.resources:IResourceManager" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="AS3" />
          <dep id="mx.events:ResourceEvent" />
          <dep id="flash.events:IOErrorEvent" />
          <dep id="mx.core:mx_internal" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/locale/en_US/airframework_rb.swc$locale/en_US/styles.properties" mod="1306854100000" size="301" optimizedsize="275">
          <def id="en_US$styles_properties" />
          <pre id="mx.resources:ResourceBundle" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:QueryPodRemoteObject)" mod="1294680416000" size="1859" optimizedsize="1033">
          <def id="com.my.app.remoting:QueryPodRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:IQueryPodRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
          <dep id="com.my.app.vo:QueryPod" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:IInvalidating)" mod="1306872040202" size="692" optimizedsize="250">
          <def id="mx.core:IInvalidating" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.manager:AsyncManager)" mod="1297671711000" size="2404" optimizedsize="1361">
          <def id="com.my.app.manager:AsyncManager" />
          <pre id="Object" />
          <dep id="mx.rpc:Fault" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="com.my.app.action:AsyncAction" />
          <dep id="org.osflash.signals:ISignal" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.modules:IModuleInfo)" mod="1306872055374" size="1626" optimizedsize="534">
          <def id="mx.modules:IModuleInfo" />
          <pre id="flash.events:IEventDispatcher" />
          <pre id="Object" />
          <dep id="mx.core:IFlexModuleFactory" />
          <dep id="flash.system:SecurityDomain" />
          <dep id="flash.utils:ByteArray" />
          <dep id="AS3" />
          <dep id="mx.events:ModuleEvent" />
          <dep id="flash.system:ApplicationDomain" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/loader/HeaderModuleLoader.as" mod="1308837418000" size="4145" optimizedsize="2113">
          <def id="com.my.app.loader:HeaderModuleLoader" />
          <pre id="com.my.app.loader:BaseModuleLoader" />
          <dep id="com.my.app.module.header:IHeaderModule" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="com.my.app.vo:User" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="AS3" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.model:ApplicationModel)" mod="1297160952000" size="529" optimizedsize="271">
          <def id="com.my.app.model:ApplicationModel" />
          <pre id="Object" />
          <dep id="AS3" />
          <dep id="com.my.app.vo:Customer" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragReject_207783805.as" mod="1306854026000" size="641" optimizedsize="376">
          <def id="_class_embed_css_Assets_swf_1422583548_mx_skins_cursor_DragReject_207783805" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:Query)" mod="1295374588000" size="1105" optimizedsize="609">
          <def id="com.my.app.vo:Query" />
          <pre id="com.my.app.vo:CacheVO" />
          <dep id="Date" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.remoting:CategoryRemoteObject)" mod="1294221810000" size="1161" optimizedsize="734">
          <def id="com.my.app.remoting:CategoryRemoteObject" />
          <pre id="com.my.app.remoting.interfaces:ICategoryRemoteObject" />
          <pre id="com.my.app.remoting:BaseRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.base:MediatorBase)" mod="1269791984000" size="1944" optimizedsize="1038">
          <def id="org.robotlegs.base:MediatorBase" />
          <pre id="org.robotlegs.core:IMediator" />
          <pre id="Object" />
          <dep id="flash.events:Event" />
          <dep id="flash.events:IEventDispatcher" />
          <dep id="AS3" />
          <dep id="flash.utils:getDefinitionByName" />
          <dep id="Error" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.vo:DashboardPod)" mod="1295255883000" size="1046" optimizedsize="531">
          <def id="com.my.app.vo:DashboardPod" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.enum:MenuTypes)" mod="1294410482000" size="498" optimizedsize="255">
          <def id="com.my.app.enum:MenuTypes" />
          <pre id="Object" />
          <dep id="AS3" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/src/com/my/app/mediator/MainViewMediator.as" mod="1309180556000" size="8603" optimizedsize="5066">
          <def id="com.my.app.mediator:MainViewMediator" />
          <pre id="org.robotlegs.mvcs:Mediator" />
          <dep id="com.my.app.vo:User" />
          <dep id="com.my.app.remoting.interfaces:IUserRemoteObject" />
          <dep id="com.my.app.component.asyncPasswordEnter:AsyncPasswordEnter" />
          <dep id="com.my.app.component.asyncRetry:AsyncRetry" />
          <dep id="com.my.app.action:AsyncAction" />
          <dep id="com.my.app.manager:ModalPopupManager" />
          <dep id="com.my.app.domain.auth:IAuth" />
          <dep id="com.my.app.vo:QuerySnippet" />
          <dep id="com.my.app.view:MainView" />
          <dep id="com.my.app.vo:DashboardSnippet" />
          <dep id="com.my.app.enum:MenuTypes" />
          <dep id="mx.rpc:Fault" />
          <dep id="flash.events:MouseEvent" />
          <dep id="com.my.app.vo:Query" />
          <dep id="com.my.app.enum:NavigationViews" />
          <dep id="AS3" />
          <dep id="com.my.app.manager:NavigationManager" />
          <dep id="mx.core:FlexGlobals" />
          <dep id="flash.utils:Timer" />
          <dep id="flash.display:DisplayObject" />
          <dep id="flash.events:TimerEvent" />
          <dep id="com.my.app.model:ApplicationModel" />
          <dep id="com.my.app.manager:AsyncManager" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.delegate.remoting:UserDelegate)" mod="1292231868000" size="1092" optimizedsize="605">
          <def id="com.my.app.delegate.remoting:UserDelegate" />
          <pre id="com.my.app.delegate.interfaces:IUserDelegate" />
          <pre id="com.my.app.delegate.remoting:BaseDelegate" />
          <dep id="com.my.app.remoting.interfaces:IUserRemoteObject" />
          <dep id="AS3" />
          <dep id="mx.rpc:AsyncToken" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppPro/libs/robotlegs-framework-modules.swc(org.robotlegs.base:ViewMap)" mod="1269791984000" size="2749" optimizedsize="1552">
          <def id="org.robotlegs.base:ViewMap" />
          <pre id="org.robotlegs.core:IViewMap" />
          <pre id="org.robotlegs.base:ViewMapBase" />
          <dep id="flash.events:Event" />
          <dep id="flash.utils:getQualifiedClassName" />
          <dep id="org.robotlegs.core:IInjector" />
          <dep id="AS3" />
          <dep id="flash.display:DisplayObjectContainer" />
          <dep id="flash.display:DisplayObject" />
          <dep id="flash.utils:Dictionary" />
        </script>
        <script name="/Users/cl/Documents/flex-workspace/my_mainapp/MYAppLogic/bin/MYAppLogic.swc(com.my.app.manager:NavigationManager)" mod="1295279651000" size="2655" optimizedsize="1547">
          <def id="com.my.app.manager:NavigationManager" />
          <pre id="Object" />
          <dep id="mx.events:BrowserChangeEvent" />
          <dep id="mx.managers:BrowserManager" />
          <dep id="mx.utils:URLUtil" />
          <dep id="org.osflash.signals:Signal" />
          <dep id="com.my.app.enum:NavigationViews" />
          <dep id="mx.managers:IBrowserManager" />
          <dep id="AS3" />
          <dep id="org.osflash.signals:ISignal" />
          <dep id="com.my.app.vo:QuerySnippet" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:mx_internal)" mod="1306872039530" size="184" optimizedsize="109">
          <def id="mx.core:mx_internal" />
          <dep id="AS3" />
        </script>
        <script name="_class_embed_css_Assets_swf_1422583548_CloseButtonDisabled_452580263.as" mod="1306854026000" size="620" optimizedsize="369">
          <def id="_class_embed_css_Assets_swf_1422583548_CloseButtonDisabled_452580263" />
          <pre id="mx.core:SpriteAsset" />
          <dep id="AS3" />
        </script>
        <script name="/Applications/Adobe Flash Builder 4/sdks/4.5.1/frameworks/libs/framework.swc(mx.core:EmbeddedFont)" mod="1306872041265" size="1212" optimizedsize="625">
          <def id="mx.core:EmbeddedFont" />
          <pre id="Object" />
          <dep id="mx.core:EmbeddedFontRegistry" />
          <dep id="AS3" />
          <dep id="mx.c

  • Error in Loading Resource Bundle in JSP

    Hi
    I have one Resource Bundle which working well in my JSP page
    i declared as below
    <f:loadBundle basename="com.ApplicationLabels" var="lblbundle"/>
    Ok then i want to add another new resource bundle and i put it below the first loadBundle tag
    <f:loadBundle basename="com.newLabels" var="newbundle"/>
    But when i access my JSP page it keeps giving me
    Exception Details: javax.faces.el.PropertyNotFoundException
    Error testing property 'test' in bean of type null
    Possible Source of Error:
    Class Name: com.sun.faces.el.PropertyResolverImpl
    File Name: PropertyResolverImpl.java
    Method Name: getType
    Line Number: 342
    What are the things i need to configure after i creatting properties file for my Application Messages in JSP page
    any idea about this exception?
    Thanks.

    Hi Voodi,
    in the record i have many columns that refered to date, i have: Valid-from, Valid-To H, created on, Valid From, Valid To- i don't know where is the specified column to check the required format, in PSA in the data package 19 i have 13755 Records posted and i have checked many records to control these columns but i don't find something that demonstrate me a difference between the format, i don't know why the error signalated is only 6701...but you think is only a problem of format it's not not somthing that i have to signalated to the person who works on R/3 if there is something to correct in the datasource?
    Thanks
    Bilal

  • Java: Loading Resource Bundle File with UTF-8

    I have found out all my previous problems now, thank you all for your assitance with this...
    During the time we have worked so solve our problem with UTF-8 charset we have found new problem with this?
    I don't know if this is the right forum to put this up, if not please let us know where to go with this?
    I have prepared both Eclipse (JSP Files) and GlassFish to run all my files in charset UTF-8. Then i got my
    resource bundle files(property files) to use UTF-8 encoding. Everything looks fine in my text editor. Then
    when i upload these pages every character retrieved from my resource bundles look garbled. This is because
    Java loads property files using ISO 8859-1 character encoding.
    This is a problem from Sun i have read on the internet!
    Note: that in JDK 1.6, you can use PropertyResourceBundle constructor to take a Reader which uses UTF-8 encoding.
    please have a look at these links for more info:
    [http://www.kai-mai.com/node/128]
    [http://java.sun.com/javase/6/docs/api/java/util/PropertyResourceBundle.html]
    Note: PropertyResourceBundle can be constructed either from an InputStream or a Reader, which represents a property file.
    Constructing a PropertyResourceBundle instance from an InputStream requires that the input stream be encoded in ISO-8859-1.
    In that case, characters that cannot be represented in ISO-8859-1 encoding must be represented by Unicode Escapes,
    whereas the other constructor which takes a Reader does not have that limitation.
    What i have read and understand is that the real solution to the problem is: Get the fmt lib to use a Reader instead of an
    InputStream. Alternativly if it works get a ResourceBundle instead of creating one that is wrong all the time? I have to create
    my own ResourceBundle instead of using my own fmt lib wich i cannot trust in a way any more. Is this right or am i comletly wrong?
    My WebTexts files, en, sv and ry are my resource property bundles. To be able to read them i will use resource property bundle reader.
    Fmt lib gives me this but it seems that it inciates this in an InputStream (wich is looked to iso-8859-1) instead of a reader who can
    read UTF-8 without no problem. So can i get my fmt lib to change this or not, anybody have an idea about this???

    Torleif wrote:
    Ok, i know there are a few ways of doing this already. The problem is that i have no idea how to use these different problem solving issues. First we have the;
    1. native2ascii command line utility.
    2. use the XML properties format.
    3. other ways of converting from iso-8859-1 to utf-8.
    The last one i have tried already but i never get this to work. So after knowing of 2 standardized solutions you choose to implement your own non-standard soltion? That's usually not a good idea until you've verified that the standardized solution don't help.
    This is also not the best solution to the problem i have to say. This way i will have both properties files and source files to work with and that is to much i think. Either i will use the native2ascii command or use XML properties format like you say here. I need some more insight in how these two work only because i have no idea my self.Uhm .. read [the documentation|http://java.sun.com/javase/6/docs/api/java/util/Properties.html]? loadFromXML/storeToXML work pretty much exactly the same as load/store, except they handle XML. Try it, look at what it produces, learn.
    Could you please help and explain how to use either this native2ascii command line work or how this XML format properties would work for me. Please i need guidance here with this!!![native2ascii is documented as well|http://java.sun.com/javase/6/docs/technotes/tools/windows/native2ascii.html].
    If you have a specific question after reading those, feel free to ask here.
    You really have to work on your Google-fu, it seems to be too weak.

Maybe you are looking for