Loading RSL's from a module

Hello,
We're having a problem with RSL's with Flex 4.
It seems that we can't load a RSL library from a module. It causes error like 1014 (Verify Error).
I've posted a bug but it has not been answered yet :
https://bugs.adobe.com/jira/browse/SDK-27119
Can someone please help ?
Thanks.

I'll try to explain our problem with an example.
With Flash Builder 4 we create 3 projects:
- a Flex Project A with an application AppA
- a Flex Project B with:
  - an application AppB (not used but mandatory in FB4)
  - a module ModuleB
- a Flex Library Project C with a class named ClassC
Dependencies: 
- AppA loads ModuleB with ModuleLoader component 
- ModuleB uses ClassC (in Flex Build Path project C is declared 
as RSL). 
At execution time, if we trace http requests (with Firebug): 
- AppA is loaded 
- framework RSLs are loaded 
- ModuleB is loaded 
And the problem: not request to load our RSL (built from C project) 
Same scenario works fine with Flex Builder 3. 
Note: we plan to delivery a new version of our software in October 
to improve design with new flex 4 skin capabilities and this problem 
is blocking. 
RC

Similar Messages

  • [svn:fx-trunk] 12000: Load RSLs relative to a module.

    Revision: 12000
    Revision: 12000
    Author:   [email protected]
    Date:     2009-11-19 11:46:14 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Load RSLs relative to a module.
    Load RSLs relative to the module. Delay loading RSLs until the Event.INIT event because before that the loaderInfo.url is not ready. Without the loadInfo.url we can?\226?\128?\153t load RSLs relative to the module.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-20632
    Reviewer: Alex
    Tests run: checkintests, Modules
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-20632
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as

  • Loading RSLs from Modules

    For a while I've been wanting to be able to load an RSL from a Module.  The reason for this is that some modules require some RSL but that RSL is not needed in the MainApp.
    I've googled alot on this subject and can't find any information that will show that this is possible, but now reading up on the enhancements of the Hero Sdk (http://opensource.adobe.com/wiki/display/flexsdk/RSL+Enhancements) it seems to be possible.
    To be specific here is a quote from the info
    3.   Going into Flex 4 we only expected sub-applications and modules to  re-use the RSLs loaded by the main application. But now we see modules  that are being used to load custom RSLs. Expecting the main application  to load all of the RSLs won't work anymore. We are also seeing cases  where modules want to be independent of the application and load all the  RSLs it needs without regard for which RSLs the application is loading.  Today this can result in multiple loads of the same RSL.
    From reading that, it is possible.  Can anyone please point me in the direction on to how to acomplish that.  How to load an RSL that a module needs when loading the module?
    Thanks,
    Art

    In 2008 and 2009 I was heavily involved in trying to develop modular Flex and AIR applications.  I have not been heavily involved for the past 10 months, so I don't know whether I can offer any help or not.  Some things have changed with Flex 4 and AIR 2, and while I have only spent a couple of days trying to catch up, it is very clear that Flex 4 and AIR 2 ended up being surprisingly different from what I was doing with Flex 3.3, AIR 1.5 and Gumbo.
    If you would like to chat about it, please send me an email:  tcorbet at ix.netcom.com.  I recommend that for two reasons.  First, I was never able to get much help from any of the myriad of Adobe Forums in trying to discuss the concepts of modularization as they apply to an AIR application.  There was that lengthy white paper for Flex, but trying to get specific help on code-level implementations was not successful.  Second, since what I think I may know about the topic is so apt to be wrong, it would be better just to confuse you rather than everyone!
    That said, for some perspective, in my mind the topic of RSL loading covers two closely related matters.  One has to do with the RSL support for the various Open Source frameworks.  While I was wrestling with trying to manage which versions of which SWZ and/or which SWC would be needed by various sub-applications, I asked why in the world we had to do this anyway.  So, I am happy to see -- but have not yet tried to re-engineer my solutions -- that Adobe has agreed to host those RSL files rather than asking each of us to do it.
    The other RSL -- my frame of reference, maybe not yours -- topic is the managment of your own modular application code.  I finally ended up with an application manifest file that could be used to determine the current release level of each 'module' and each 'SWC/SWZ' installed on the users desktop.  Then I could make a quick check of the current release level available on the server, and push out only whatever library needed to be refreshed.  If nothing needed to be refreshed, the load was just local, otherwise it was downloaded, inserted into the user's file system and then loaded on demand, only if the user was working in some part of the application for which that library was required.  If the user was not working with that sub-application, he would not see the overhead of checking for or installing the updated library code.
    So, if those are things on your mind, maybe I can help, but since the Adobe developers seem to have a much different perspective on the dangers of loading code into a desktop or web-centric application, I am pretty sure that what was working for me 10 months ago will not work with the Flex 4.1, AIR 2.0.2, and I will once again be looking for some white paper where someone tries to explain all the reasons for all those sandbox bridges.

  • [svn:fx-trunk] 12665: Load RSLs relative to module.

    Revision: 12665
    Revision: 12665
    Author:   [email protected]
    Date:     2009-12-08 13:13:20 -0800 (Tue, 08 Dec 2009)
    Log Message:
    Load RSLs relative to module.
    Also dispatch an error message from ModuleLoader if a module cannot be created.
    build.xml
    Include modules.properties file in framework resource bundle.
    src/mx/core/FlexModuleFactory.as
    Pass rootURL to RSLItem to support relative urls for the import loading style of RSL loading.
    src/mx/modules/ModuleLoader.as
    Dispatch an error if we cannot create a module for whatever reason. In the scenario for this bug the module had a custom library that was externalized but it did not try to load the RSL partly due to user error and partly to tooling. This caused the Module?\226?\128?\153s main class to not be present in the module factory?\226?\128?\153s application domain.
    Bug FB-24689 has been written up to address compiling modules to load RSLs from Flash Builder.
    bundles/en_US/modules.properties
    New bundle for modules.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-20632
    Reviewer: Alex
    Tests run: checkintests, Modules
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FB-24689
        http://bugs.adobe.com/jira/browse/SDK-20632
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/FlexModuleFactory.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/modules/ModuleLoader.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/bundles/en_US/modules.properties

  • Cannot load program sqlplus, error Symbol ___strcmp64 is not exported from dependent module /usr/lib/libc.a[shr_64.o]

    Dear all,
    We are expriencing an error after a redirected restore, we are restored a backup of a prod system on a new host.
    While running a 'brrestore' command to get the restore, it returns the following error:
    BR0401I BRRESTORE 7.40 (8)
    BR0169I Value 'util_file_online' of parameter/option 'backup_dev_type/-d' ignored for 'brrestore' - 'util_file' assumed
    BR0405I Start of file restore: reojarkx.rsb 2014-07-23 16:48:47
    BR0484I BRRESTORE log file: /oracle/SID/sapbackup/reojarkx.rsb
    BR0278E Command output of '/oracle/SID/112_64/bin/sqlplus':
    exec(): 0509-036 Cannot load program sqlplus because of the following errors:
            0509-130 Symbol resolution failed for sqlplus because:
            0509-136   Symbol ___strcmp64 (number 71) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-136   Symbol ___strcpy64 (number 76) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-136   Symbol __setjmp (number 78) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-192 Examine .loader section symbols with the
                     'dump -Tv' command.
    BR0280I BRRESTORE time stamp: 2014-07-23 16:48:47
    BR0279E Return code from '/oracle/SID/112_64/bin/sqlplus': 255
    BR0302E SQLPLUS call for database instance SID failed
    BR0406I End of file restore: reojarkx.rsb 2014-07-23 16:48:47
    BR0280I BRRESTORE time stamp: 2014-07-23 16:48:47
    BR0404I BRRESTORE terminated with errors
    Can someone help to get the reason of this issue.
    Thanks, regards

    Roman,
    how can you know that it is about AIX? The OP didn't tell us.
    Besides that, I agree that different OS versions may be the root cause.
    regards

  • How can I calculate the load from all modules in ECC6.0 for our production

    Hello Experts,
    I have doubt , how can I check the load from all modules like FI, SD, MM, HR, PP, BASIS, ............etc from sap level. Can you explain from which transaction and how to check the workload for each module seperately from sap level. We are wondering about the size utilization of each module. Our production database is R3 ECC 6.0 on Oracle 10.2 on AIX operating systems.
    Thanks for your help in this regard.
    Thanks & Regards,
    Haseem.

    Hi
    Check in ST07 the application monitor.
    Regards
    Bhaskar

  • How do I suppress messages/loading bars from Import-Module and Import-PSSession?

    Hello,
    How do I suppress messages/loading bars from Import-Module and Import-PSSession?
    I am writing a script that will be using these commands and it makes the script look clunky/scary to novice users.
    Thank you for your time.

    Sorry to bring this back up, but it seems that the ProgressPreference worked for Exchange, but it didn't affect the Active Directory progress bar. Any ideas why?
    Strange, this worked just fine for me (no module loading indication):
    PS C:\Users\mike.admin> $ProgressPreference = 'SilentlyContinue'
    PS C:\Users\mike.admin> Get-ADUser mike.admin | Select Name
    Name
    mike.admin
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)
    I do run the Import-Module command inside a function, but I doubt that would do it because I assume the preference is set scriptwide.
    This will work anywhere.
    $global:ProgressPreference='SilentlyContinue'
    ¯\_(ツ)_/¯

  • [svn] 4525: Fix loading RSLs from applications loaded from bytes.

    Revision: 4525
    Author: [email protected]
    Date: 2009-01-14 10:15:45 -0800 (Wed, 14 Jan 2009)
    Log Message:
    Fix loading RSLs from applications loaded from bytes.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18250
    Reviewer: Alex
    tests: checkintests
    SystemManager.as
    Normalize the root urls passed into the RSLItems.
    LoaderUtil.as
    Test rootURL first before all the url tests. No need to perform all url tests if rootURL is null.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18250
    Modified Paths:
    flex/sdk/branches/3.3.0/frameworks/projects/framework/src/mx/managers/SystemManager.as
    flex/sdk/branches/3.3.0/frameworks/projects/framework/src/mx/utils/LoaderUtil.as

    Revision: 4525
    Author: [email protected]
    Date: 2009-01-14 10:15:45 -0800 (Wed, 14 Jan 2009)
    Log Message:
    Fix loading RSLs from applications loaded from bytes.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-18250
    Reviewer: Alex
    tests: checkintests
    SystemManager.as
    Normalize the root urls passed into the RSLItems.
    LoaderUtil.as
    Test rootURL first before all the url tests. No need to perform all url tests if rootURL is null.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-18250
    Modified Paths:
    flex/sdk/branches/3.3.0/frameworks/projects/framework/src/mx/managers/SystemManager.as
    flex/sdk/branches/3.3.0/frameworks/projects/framework/src/mx/utils/LoaderUtil.as

  • ITunes 10.5.3, Unable to Load Class Data from Sync Services, Crashes Repeatedly

    Ever since iTunes 10.5.3 on my Windows 7 x64 box, I've been having serious problems keeping iTunes running:
    1)  Any time I connect my iPhone or iPad, or any time they attempt to sync over WiFi, I get the 'Unable to load class data from sync services' error.  It's worth mention that the iPhone or iPad do actually then proceed to sync correctly, and all media / data is synchronized successfully, as far as I've been able to tell.  I've reset sync history, restored the iPhone and iPad, manually moved the SyncServices directory, set both the iPhone and iPad up as new, completely uninstalled iTunes and the mobile device software, re-installed, and *nothing* I do fixes this issue or even seems to impact it.  Uninstalling iTunes 10.5.3 and reinstalling iTunes 10.5.2 resolves this error.
    2)  iTunes 10.5.3 has serious crashing problems on my machine, though I've searched through forums and found a lot of other people with the problem.  In my case, sporadically as iTunes access the iTunes store (for example, I can always make it happen by subscribing to the Diggnation podcast and telling it to refresh the podcast), I get a full application crash which generates the following event in the event log:
    Faulting application name: iTunes.exe, version: 10.5.3.3, time stamp: 0x4f14cc3d
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17651, time stamp: 0x4e211319
    Exception code: 0x80000003
    Fault offset: 0x0001280c
    Faulting process id: 0x564
    Faulting application start time: 0x01cce78789dc009a
    Faulting application path: D:\Program Files (x86)\iTunes\iTunes.exe
    Faulting module path: C:\Windows\syswow64\KERNELBASE.dll
    Report Id: ecc77400-537a-11e1-b809-00248c196007
    Again, uninstalling iTunes 10.5.3 and re-installing iTunes 10.5.2 fixes this issue as well, but I really shouldn't have to do that.  Is there any actual solution to these problems other than dowgrading to an older version?
    Yes, I'm running current malware protection (and my system is clean) and yes, I've already checked any other obvious culprits to make sure I don't just have a corrupt library or file somewhere that's causing it.  My Windows 7 install is completely up to date from a Windows Update perspective and also from a driver perspective (even including the motherboard and chipset drivers).  I made sure to do a system file integrity check (sfc /scannow) and it confirmed my install of Windows isn't suspect, but beyond all that I was able to reproduce these failures on a completely separate machine running Windows 7 x64, without any of my media library or data on it -- iTunes 10.5.3 just seems to be bad news on Windows 7 x64 for me, even though I know there are definitely people are using it successfully.  I don't get any other application crashes for any other applications, and I've never had an issue like this with any previous version of iTunes...
    Last but not least, in case it matters, I'm running iOS 5.0.1 on both the iPhone4 and the iPad2.  The iPhone4 is the GSM AT&T model and the iPad2 is the CDMA Verizon model.

    OK, I've given up.  Uninstalled iTunes 10.5.3 permanently.  It's a shame, 10.5.2 works perfectly but 10.5.3 is a complete and total cluster for me.
    Anyone with the same problems who hasn't done this already, just uninstall iTunes and the Apple Mobile Device Service in your Add/Remove Programs, then re-install iTunes 10.5.2.  You won't lose your library or any settings or apps, it will just go back to working again.
    I wish Apple would acknowledge this so that I'd at least know it would be fixed in the future.

  • Loading Master Data from SAP R/3

    Hi Friends.,
               I'm going to load master data from SAP R/3 FI Modules to BW, but what do these objects mean by ?
    0LOGSYS - Source System
    0SOURSYSTEM - Source system ID
                     I'mn't understanding clearly, and also transfer rules aren't mapped properly.
       can anybody clarify these things ?
    Regards.,
    Balaji K. Reddy

    Hi Balaji,
    You need to use these objects when your BW is feed by different source system and you want to map differences beetween Master and Transactional Data fed by the different systems (different R/3 - Flat File - Legacy Systems - ...).
    If you do not have this situation you can avoid to use these objects (probably you find these objects in Tab compound of your MD).
    Ciao.
    Riccardo.

  • BPC:NW - Best practices to load Transaction data from ECC to BW

    I have a very basic question for loading GL transaction data into BPC for variety of purposes, would be great if you can point me towards best practices/standard ways of making such interfaces.
    1. For Planning
    When we are doing the planning for cost center expenses and need to make variance reports against the budgets, what would be the source Infocube/DSO for loading the data from ECC via BW, if the application is -
    YTD entry mode:
    Periodic entry mode:
    What difference it makes to use 0FI_GL_12 data source or using 0FIGL_C10 cube or 0FLGL_O14 or 0FIGL_D40 DSOs.
    Based on the data entry mode of planning application, what is the best way to make use of 0balance or debit_credit key figures on the BI side.
    2. For consolidation:
    Since we need to have trading partner, what are the best practices for loading the actual data from ECC.
    What are the typical mappings to be maintained for movement type with flow dimensions.
    I have seen multiple threads with different responses but I am looking for the best practices and what scenarios you are using to load such transactions from OLTP system. I will really appreciate if you can provide some functional insight in such scenarios.
    Thanks in advance.
    -SM

    For - planning , please take a look at SAP Extended Financial Planning rapid-deployment solution:  G/L Financial Planning module.   This RDS captures best practice integration from BPC 10 NW to SAP G/L.  This RDS (including content and documentation) is free to licensed customers of SAP BPC.   This RDS leverages the 0FIGL_C10 cube mentioned above.
      https://service.sap.com/public/rds-epm-planning
    For consolidation, please take a look at SAP Financial Close & Disclosure Management rapid-deployment solution.   This RDS captures best practice integration from BPC 10 NW to SAP G/L.  This RDS (including content and documentation) is also free to licensed customers of SAP BPC.
    https://service.sap.com/public/rds-epm-fcdm
    Note:  You will require an SAP ServiceMarketplace ID (S-ID) to download the underlying SAP RDS content and documentation.
    The documentation of RDS will discuss the how/why of best practice integration.  You can also contact me direct at [email protected] for consultation.
    We are also in the process of rolling out the updated 2015 free training on these two RDS.  Please register at this link and you will be sent an invite.
    https://www.surveymonkey.com/s/878J92K
    If the link is inactive at some point after this post, please contact [email protected]

  • Hi, I have just loaded Lightroom 5 from the disc onto my Mac.  every time i try and launch the application, it goes to the registration/licence window.  i have input the data five times already.  When Lr5 launches the update window appears, when i try to

    Hi, I have just loaded Lightroom 5 from the disc onto my Mac.  every time i try and launch the application, it goes to the registration/licence window.  i have input the data five times already.  When Lr5 launches the update window appears, when i try to do anything the following message comes up: - An error occrred when attempting to change modules.  What do i need to do to fix this?

    Masher please use the uninstaller located in the Applications/Utilities/Adobe Installers folder.  Once Photoshop Lightroom is removed then please download Lightroom 5.5 from Adobe - Lightroom : For Macintosh : Adobe Photoshop Lightroom 5.5 and reinstall.

  • "Bad quality received from network module."

    My computer has 2 Fieldpoint ethernet banks setup to allow Lookout to interface with mulitple HW peripherals.  Lookout launches automatically when the computer starts up.  And after everything is loaded, one of the ethernet banks will almost immediately log the following alarm, "Bad quality received from network module."  Does anyone know what criteria/logic is behind the triggering of this alarm?
    We have been unable to find any issues that would cause this alarm to go off.

    it is power cycled it works again. We have another FP1600 on same network with no problem. Ethernet drop is 230 feet. Part# is 185690E-01, firmware 4.11. I have swapped it with a spare unit we have of the same part number, 185690E-01 and firmware release.Mike,
    Thank you for using the discussion forums. If possible, please generate a phone support request at ni.com/ask. One of our engineers will be happy to help you resolve this particular issue.
    Regards,
    Michael Shasteen
    Applications Engineering
    National Instruments
    www.ni.com/ask
    1-866-ASK-MY-NI

  • Urgent: Web Service from Function Module

    Hi guys, I am new to this area so please help to achieve following:
    I want to show a demo to load data from a web service to BI. I have performed the following steps and don’t know how to process further. Please help me in the sense where do I put the logic to show fields on the web service and ….
    1. I have created a web service data source in BI with four fields (Cal dat, material, amount and currency)
    2. This created a Web Service /RFC FM automatically.
    3. From this FM I created a web service (Utilities – create web service – from function module)
    4. I followed the web service creation wizard.
    Thanks,
    sam

    releasing and related steps are fine,
    what i want to know is, BW/BI datasource will create a FM, from this FM inturn I will create a webservice.
    Lets say BW/BI datasource has 4 fields account, company, amount & currency.
    I want to enter these 4 values from the webservice which will bring these values to BW delta queue and eventually get loaded in BW.
    For this process do I need to code anything in the FM or any other part of the system

  • Compare two sequences loaded in a C# code module.

    Hi,
    Is it possible to compare two sequences loaded in a C# code module using functionality from the TestStand API?
    Best regards

    Hello,
    Here you can find a related post:
    http://forums.ni.com/ni/board/message?board.id=330&message.id=26058&requireLogin=False
    Let me know if you have further questions or if this doesn't help you.
    Kind Regards,
    Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
    CLD, CTA
    If someone helped you, let them know. Mark as solved and/or give a kudo.

Maybe you are looking for

  • Behaviors+Firefox = Problems?

    Hi all. I've created a html page with a SWF file in it. I have a couple html links set with behavoirs to control the SWF (goto frame 3, etc.). Everything works great in IE, but not in Firefox. When I click the link, it opens up a load of Errors, any

  • 2:30 movie is more megs than 3:00 when compressed? Why?

    I've got two short movies. One is 2:30 minutes. One is 3:00 minutes. For "Format" under Export>Quicktime Conversion I used the default "High Bandwidth" setting. (H.246) For reasons I cannot figure out, the 2:30 is 38 megs, and the 3:00 is 25 megs. Th

  • A simple game: name that pkg

    I don't know what gave me this idea, but here it is anyway... a simple multiple choice game that presents a package description followed by 4 package names. All  you have to do is pick the right name. By default it uses locally installed packages. Yo

  • Mail Stored on Unsecure Mac

    Hi, I just noticed that despite deleting mail and emptying trash (I have an ISP-provided POP account set up through Mail), the subject lines, etc. of deleted mail are showing up on a spotlight search under Mail Messages, and when you click on them, i

  • Post code search for N82 maps

    Does any one know how i can do a post code search in the uk for my nokia maps, it only seems to accept american zip codes. Every post code i tryed didnt work. Cheers