Why alert casting error when module url changed?

Hi, everyone.
I occurred a stranger error when click the item in DataGrid
which is redirected by "ModuleLoader" url.
Error #1034: Cast Error:Cannot cast
mx.managers::DragManagerImpl@482f971 to
mx.managers.IDragManager。
at mx.managers::DragManager$/get
impl()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\DragManager.as:152]
at mx.managers::DragManager$/get
isDragging()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\DragManager.as:18 7]
at
mx.controls.listClasses::ListBase/dragScroll()[E:\dev\3.0.x\frameworks\projects\framework \src\mx\controls\listClasses\ListBase.as:7148]
at Function/
http://adobe.com/AS3/2006/builtin::apply()
at <anonymous>()
at SetIntervalTimer/onTimer()
at flash.utils::Timer/_timerDispatch()
at flash.utils::Timer/tick()
Actually I never modify about DragManagerImpl...
In my main.mxml there is a
<mx:ModuleLoader id="module"
url="modules/DeviceRegisterSelectWizardModule.swf"/>
this ModuleLoader control is to load a new swf module when
change the url.
Althought the first loaded module which included DataGrid is
OK, it popup the error when this module is the second time switched
by the url...
The error is the above when click the item in it.
Actually all cast operation is error as I tried:
And is there any solution for it? ModuleLoader has such a
bug?
Thank you very much.

Hi,
Another way to "find" the URL for the oamconsole, that I use if I'm not familiar with the configuration I'm working on is to first log into the Adminserver WL Console, then go to "Deployments".
Then, find "oamconsole" in the Deployments listed (on the right).
Click on that, then on the next page, look for the "Testing" tab. Click on the "Testing" tab, which which show the /oamconsole app.
Click on the "+" to expand the tree, and you should see a bunch of different URLs on the right, e.g., if you have OAM console deployed to managed servers, etc., there'll be different URLs for those, etc., and you can just click on the links to open up OAM Console in your browser.
Jim

Similar Messages

  • I have Lightroom 3 and have installed it on my Retina iMac running Yosemite. It will not show me any of the modules..error when attempting to change modules.. and keeps asking for my serial number every time. Is it compatible?

    I have Lightroom 3 and have installed it on my Retina iMac running Yosemite. It will not show me any of the modules..error when attempting to change modules.. and keeps asking for my serial number every time. Is it compatible?
    David

    This is a duplicate thread - see here

  • Window error when publishing Muse change, can't pubish page update

    Window error when publishing Muse change, can't pubish page update. Any suggestions?
    It happens after I updated my website payment page with a new Paypal html. That html is below with x's put in to the code. Why doesn't Muse or Windows like this code in Muse?
    <script type="text/javascript" data-pp-pubid="9xxxxx6cec" data-pp-placementtype="540x200"> (function (d, t) {
    "use strict";
    var s = d.getElementsByTagName(t)[0], n = d.createElement(t);
    n.src = "//paypal.adtag.where.com/merchant.js";
    s.parentNode.insertBefore(n, s);
    }(document, "script"));
    </script>

    Window error when publishing Muse change, can't pubish page update. Any suggestions?
    It happens after I updated my website payment page with a new Paypal html. That html is below with x's put in to the code. Why doesn't Muse or Windows like this code in Muse?
    <script type="text/javascript" data-pp-pubid="9xxxxx6cec" data-pp-placementtype="540x200"> (function (d, t) {
    "use strict";
    var s = d.getElementsByTagName(t)[0], n = d.createElement(t);
    n.src = "//paypal.adtag.where.com/merchant.js";
    s.parentNode.insertBefore(n, s);
    }(document, "script"));
    </script>

  • Error when inserting or changing in a sorted table

    Hi Experts,
    When i am executing a webdynpro application it says Error when inserting or changing in a sorted table. Can any one help for this.
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: GET_CATEGORY_LIST of program /1BCWDY/F9XHYWN4WKNMG4CDUGA8==CP
    Method: IF_COMPONENTCONTROLLER~GET_CATEGORY_LIST of program /1BCWDY/F9XHYWN4WKNMG4CDUGA8==CP
    Method: WDDOMODIFYVIEW of program /1BCWDY/F9XHYWN4WKNMG4CDUGA8==CP
    Method: IF_WDR_VIEW_DELEGATE~WD_DO_MODIFY_VIEW of program /1BCWDY/F9XHYWN4WKNMG4CDUGA8==CP
    Method: DO_MODIFY_VIEW of program CL_WDR_DELEGATING_VIEW========CP
    Method: MODIFY_VIEW of program CL_WDR_VIEW===================CP
    Method: DO_MODIFY_VIEW of program CL_WDR_CLIENT_COMPONENT=======CP
    Method: DO_MODIFY_VIEW of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW_PHASE_MODEL=====CP
    Method: PROCESS_REQUEST of program CL_WDR_WINDOW=================CP
    in ST22
    Object Definition
      DATA: lo_node                   TYPE REF TO if_wd_context_node,
            lo_node_info              TYPE REF TO if_wd_context_node_info,
            lo_element                TYPE REF TO if_wd_context_element.
    Additional Data declarations
      DATA: lv_key TYPE string.
    Get context node.
      lo_node = wd_context->get_child_node( name = 'DROPDOWNLISTS' ).
      lo_node_info = lo_node->get_node_info( ).
    Call method to fetch the categories.
      CALL METHOD cl_hap_wd_start_page_ui=>category_get_list
        EXPORTING
          add_on_application = add_on_application
        IMPORTING
          t_categories       = lt_categories.
    Append Default selection entry 'All'.
      lw_category-category_id = '00000000'.
      lw_category-category_name = 'All'.
      APPEND lw_category TO lt_categories.
    Sort table after appending the new entry.
      SORT lt_categories ASCENDING.
    Loop through the category list and populate key(category_id) value(category_name) pair for
      LOOP AT lt_categories INTO lw_category.
        lw_key_value-key = lw_category-category_id.
      625     lw_key_value-value = lw_category-category_name.
    >>>>>     APPEND lw_key_value TO lt_key_values.------>Here it throws an error
      627     CLEAR: lw_key_value, lw_category.
      628   ENDLOOP.
      629
      630 * Bind the category key-value pair to the context attribute.
      631   CALL METHOD lo_node_info->set_attribute_value_set
      632     EXPORTING
      633       name      = 'CATEGORY_LIST'
      634       value_set = lt_key_values.
      635
      636 * Make the entry 'All' as default selected.
      637   CALL METHOD lo_node->set_attribute
      638     EXPORTING
      639       value = '00000000'
      640       name  = 'CATEGORY_LIST'.
      641
      642 ENDMETHOD.
      643
      644 method GET_EMPLOYEES.
      645

    Hello Durga,
    from the error what I understood is lt_key_values is a sorted table and you are trying append a new line to it. Incase of sorted table you need to use the INSERT statement and not the APPEND statement.
    INSERT lw_key_value INTO table lt_key_values.
    BR, Saravanan

  • Demo Error when creating or changing configuration objects

    Hi All,
    I am trying to "Generate the Configuration Objects" for Demo: CheckFlightAvailability.
    But in the GenerationLog I got the error under "Generation Statistic" saying that "Error when creating or changing configuration objects".
    I can any one tell me what went wrong?
    Regards,
    Nagarjuna.

    Did you ever solve this issue? We are experiencing the same errors, but with ZCM 11. Server configurstion is Windows Server 2008R2, database is MS SQL 2005.
    Every time we try to create or change a (Windows) bundle or policy there's an error message in ZCC. The error is:
    com.novell.zenworks.datamodel.exceptions.InternalD ataModelException: com.novell.zenworks.datamodel.exceptions.InternalD ataModelException: org.hibernate.exception.ConstraintViolationExcepti on: could not insert collection: [com.novell.zenworks.datamodel.objects.assignableco ntent.AssignableContentObject.ContentServers
    ...followed by a different GUID(?) every time.
    We've placed a SR but haven't had any suggestions from Novell yet - we're soon going from calm to panic as we are planning to move from test to production in two weeks...
    Cheers,
    Peter

  • 'Blank user name' error when trying to change email password

    My password on our mail server changed, when I tried to change the password on my Storm 9500 I get 'Blank user name' error when trying to change, but I have typed in a user name!!!!
    BLOODY frustrating because now I am not receiving any mails at all, so my business out of the office has come to a standstill!!!!
    Vicky
    Solved!
    Go to Solution.

    Try changing the email password on your PC, if you are having problems doing so from your device.
    From your desktop PC:  http://www.blackberry.com/btsc/KB02830
    North American Carriers - scroll down to select your carrier
    WorldWide Carriers - Find your carrier on the list
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Keep receiving error when trying to change device on my verizon.  Unfortunately, none of the lines on your account are eligible to receive the Online Authorization Code

    Keep receiving error when trying to change device on my verizon.  Unfortunately, none of the lines on your account are eligible to receive the Online Authorization Code. 
    Unable to change device on account.

    That would be great if they weren't 2 different size SIM cards.
    The code is a security feature and I realize this. It is to prevent someone from hacking your account and changing your devices without your knowledge. However, I am the account owner and I know exactly what is going on with my account at all times. I check data usage AT LEAST 2 times daily and I log into my account at least once daily. I would very quickly discover any issues. This feature is more of a (removed)
    Edited as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

  • Error when passing URL from OLAP Universe to WebI

    Hi Experts,
    I am getting 'The Supplier XML is not valid' WebI error when passing a URL from OLAP Universe.
    URL example:
    '<a href="http://www.sap.com">web link</a>'
    I follow Universe Designer Guide:
    - typing above URL into Dimension Select statement
    - selecting Read As Hyperlink in Object Format.
    When I drop this dimension into Result Objects panel in WebI Query and run refresh  'The Supplier XML is not valid' pops up.
    What i am trying to achive is to create a pre-formatted as Hyperlink object (dimension) in WebI to make it available for a user to design ad-hoc reports.
    Please help
    Thanks

    Hi,
    Refer the below forum link for more information:
    Universe object format in Web Intelligence
    I guess you can do some changes in the format of Universe object and use it in Webi.
    -Noor.

  • Error when trying to change Customer Exit Enhancement RSR00001

    Hi Gurus,
    I am getting the following error when I am trying to change the Customer Exit Enhancement RSR00001: "Source Text of Exit Func. not changeable."
    Please help.
    Thanks,
    Ashmith Roy

    Hi ,
    Not sure why u would like to change the text but can u try this way:
    1) go to smod and key in the enhancement
    2) click on change button and reneter the new text after accepting the language option as logon language
    3)save under a transport
    4)go to cmod and recheck the text must be changed.
    kindly award points for the same.
    tx,
    Madhu

  • Error when trying to change scheduling agreement

    Hi gurus,
    I have created a scheduling agreement via me31l and all is ok.
    I'm finding an issue when trying to change the agreement via me32l.
    If i add a new item and save, all seems ok, but the new item is note created and the below error is raises (sm13):
    Function Module: RV_KONDITION_SICHERN_V13A
    Status: Update was terminated
    Report: LV13AU02
    Row: 209
    Error details: Class: VK - Number: 211
    VK 211: UPDATE error Table KONM. Return code 4
    The curious thing is that if we add an item with the same material, the error is not raised and the scheduling agreement is properly updated.
    Could you suggest me how to solve this issue?
    Thanks in advance,
    Valentino

    Hi RAVI,
    the issue was solved with the maintenance of material inforecord. There was only one price condition mainteined with the flag "scales"... We have removed the flag from the interested material, then it has been possible to change and create scheduling agreements.
    Thanks & Regards,
    Valentino

  • Error when trying to change the look of a site collection

    Hello everyone!
    I have a single-server on-premise installation of SharePoint 2013 and I noticed that you can change the way fonts, colors etc. are used on a site collection by selecting "Change the look" from the site settings. However when I browse the page I
    get an empty page with the spinner on the right just going in circles.
    The browser log displays an error from _layouts/15/designgallery.js with this message:
    SyntaxError: JSON.parse: unexpected character
    The file is minified so unfortunately it does not tell me much more. However I also noticed a call to the webservice at /_layouts/15/designdata.ashx?hashcode=-1638098219&lcid=1033. Although this call returned a http 200 response the page turned out to
    be the "Sorry, something went wrong"-page with a correlation id as well. Looking up the correlation id in the trace log I found this unexpected error
    Application error when access /_layouts/15/designdata.ashx, Error=Object reference not set to an instance of an object.
    at Microsoft.SharePoint.Utilities.ThemeFontFace.Create(XPathNavigator xpnFontNode, XmlNamespaceManager nsm)
    at Microsoft.SharePoint.Utilities.ThemeFont.Populate()
    at Microsoft.SharePoint.Utilities.SPFont.Initialize(Stream stream)
    at Microsoft.SharePoint.Utilities.SPFont.Open(SPFile file, Boolean readPublishedVersion)
    at Microsoft.SharePoint.Utilities.SPFont.GetFontSchemesFromFolder(SPWeb themesWeb, String folderUrl)
    at Microsoft.SharePoint.Utilities.SPFont.GetFontSchemesFromFolder(SPSite site, String strThemeFolder)
    at Microsoft.SharePoint.ApplicationPages.DesignDataDownloadHandler.GenerateFontSchemeData()
    at Microsoft.SharePoint.ApplicationPages.DesignDataDownloadHandler.ProcessRequest(HttpContext context)
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    Has anyone encountered this error before or knows what the issue might be? I suspect that this error prevents me from changing the look of the site collection.

    Hi,
    According to your post, my understanding is that the “Change the look” page displayed blank, and it still shown working on it.
    This issue is always related to system requirenment. Did your environment fit for the hardware and software requirements for SharePoint ?
    You can check with the following article:
    http://technet.microsoft.com/en-us/library/cc262485.aspx
    Did the issue occur in other site collection or web application?
    You can refresh the page or reopen the page to check whether it loading.
    Did you find any error or unexpected occurred in the ULS log or event log?
    For SharePoint 2013, by default, ULS log is at
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    Thanks & Regards,
    Jason 
    Jason Guo
    TechNet Community Support

  • FRM-40501 Error When Attempting To Change Check Box Value

    I am getting a FRM-40501 error when attempting to update/change a check box value. There are a few factors in my form setup that could be the problem, I will list them below:
    My initial problem was that my INSERT statement would not trigger to fire (based on an IF statement) when my check box value was not initially set to the value of 'Y', even though the initial value was set to 'Y' in the property palette (value when checked was set to 'Y' and value when unchecked was set to 'N'). So, to remedy this I placed a specific literal select of 'Y' and aliased it back to the name of my check box name in the data block query, like: SELECT 'Y' CB_SELECT_SCHOOL FROM user_schools. Then I changed the check box to a database item (value to Yes when it was No before my "SQL select cheat" in the data block query). This made the initial value 'Y' and satisfied my IF statement before my INSERT statement in my trigger. However, now I can not update the check box item.
    Does anyone know a better way to satisfy the initial value of my check box to 'Y', even though in the initial value parameter for my checkbox is set to 'Y' and forms is not really setting the initial value (when the check box is not set to a database item)?
    Thanks in advance.
    Kyle

    I have fixed my issue.
    I have reverted the check box to not be a database item, removed the "SQL cheat" of selecting 'Y' aliasing my checkbox name in the datablock SQL, and changed the initial value of 'N' in the check box property palette. This will force a change by the user making the check box value of 'Y', satifying my insert when-button-pressed trigger to fire and update the selected row.

  • Changed email password/get SSL error when trying to change

    Hi,
    I have a 8600 plus priner.  I changed my gmail password and printer will not scan to email because of this.  I went through the IP address in chrome web browser and when attempting to change outgoing email password in all of the appropriate locations I get SSL error. Not sure what the next step should be.  Please help!
    Thanks!

    Hi BluffDrive,
    Usually you will get better help for printers in the printer section of the forum.
    I do not use scan to email but I do hear that you HAVE to use the HP software to change the email settings, not go through the IP address into the printer.
    If you click on Scan to Email, do you see a button for "Setup"? If so it will let you add new email and also change passwords.
    Hope it helps.

  • Launchpad Error: Missing Module URL

    Hi Experts,
    I am trying to launch the Fiori Launchpad but it shows blue screen. In the console it gives Missing module URL -  sap.ui2.srvc.Chip  .
    I have gone through this note #1942166. There are errors in the Database table /UI2/CHIP_CHDR. As mentioned in the note to implement note #1961957, this note could not be implemented.
    We are currently on SP08 level. And earlier the Fiori Launchpad was working fine. It suddenly started giving error.
    Also, I checked SU53, there are no logs. So could not be authorization issue.
    Running reports /UI2/CHIP_SYNCHRONIZE_CACHE & /UI2/DELETE_CACHE_AFTER_IMP didn't help either.
    Please suggest.
    Thanks,
    Parth Jhalani

    Please try to apply all the required SAP Notes.
    http://service.sap.com/sap/support/notes/1957334
    Below link might be of some help
    Fiori apps not show in launchpad after UI Add-on SP08 updates
    Regards,
    Madhu Sudhan

  • Error when trying to change password

    Two hours now trying to change the password for my WRT320N !!!  Have latest version of EasyLink Advisor; running WINDOWS 7 on my PC. Geting error "Msg 100 000 000 UNHANDLED ERROR" when I try to change the password. Can anyone help...PLEASE?

    Try to reset the router, please press and hold the reset button of the router for 30 seconds and power cycle the router. If the problem persists please use another computer for change your password.

Maybe you are looking for

  • Quicktime Sound is Scratchy Playing DVD's

    HP laptop computer with Windows XP Pro has problem with Quicktime when playing DVD movies. The sound is scratchy/skips. Any suggustions? WolfpackRon.

  • Connect a VGA monitor to a Macintosh LC III?

    Does anyone know how to connect a VGA monitor to a Macintosh LC III? Thanks!

  • HP Officejet 4630 - error 0x00000709

    Hi, we are on windows 7 and are trying to install a new officejet 4630 and are unable to set as the default printer, every time we try we get the following: Operation could no be completed (error 0x00000709). Double click the printer name and make su

  • Overlapping dates (rowid illiminates part of the result, pls help)

    Hi, this has probably been asked before but I could not find the solution I'm looking for. I have the following table emp_id start_date end_date dept_no 1 20-jan-06 jan-31-06 1 1 25-feb-06 15-mar-06 2 1 01-feb-06 null 3 Here is the same employee who

  • System Alias reappears in the System Configuration

    Hi All, This is a bit of a strange one but I wondered if anyone else has ever come across this with EP6 SP2. I have a System Object which I do not want to delete, since it might be required again in the future, so I am just removing the system alias