Remove Listener in C#

Hi,
in C# I add listeners like this
oApp.ItemEvent += new SAPbouiCOM._IApplicationEvents_ItemEventEventHandler(HandleItemEvent);
this works.
To remove the listener I use
SAPbouiCOM._IApplicationEvents_ItemEventEventHandler.Remove(HandleItemEvent);
but it wants a second parameter.
What does this parameter mean, or should I use another method to remove the listener.
Thanks,
Ad

I haven't tested this, however I think one of the following should work (using the -= operator instead or +=)
oApp.ItemEvent -= new SAPbouiCOM._IApplicationEvents_ItemEventEventHandler(HandleItemEvent);
or
oApp.ItemEvent -= new HandleItemEvent;

Similar Messages

  • Problem removing Listener Service in Clusterware 11g

    It appears that I already have a listener service as shown below, and I am having problem removing this service so that I can create another. I know that I can just add a new listener service for each node, though if anyone would share some insight on how I can remove this listener service ofr Oracle 11g Clusterware with two node cluster, I would appreciate your insight. Thanks
    rac1.respecti.com>./crs_resources.sh
    HA Resource Target State
    ora.rac1.gsd ONLINE ONLINE on rac1
    ora.rac1.ons ONLINE ONLINE on rac1
    ora.rac1.rac1.lsnr ONLINE ONLINE on rac1
    ora.rac1.vip ONLINE ONLINE on rac1
    ora.rac2.gsd ONLINE ONLINE on rac2
    ora.rac2.ons ONLINE ONLINE on rac2
    ora.rac2.rac2.lsnr ONLINE ONLINE on rac2
    ora.rac2.vip ONLINE ONLINE on rac2
    rac1.respecti.com>srvctl remove listener -n rac1 -l rac1
    PRKO-2203 : Listener is running on node: rac1
    rac1.respecti.com>srvctl stop listener -n rac1
    CRS-0210: Could not find resource 'ora.rac1.LISTENER_RAC1.lsnr'.
    rac1.respecti.com>

    Hi, Is there any tnslsnr process running on the node. To understand the problem better, enable the debug trace for the .lsnr resource. You can enable trace by executing the following command as root.
    crsctl debug log res "ora.rac1.LISTENER_RAC1.lsnr:5"
    crsctl debug log crs "CRSRTI:1,CRSCOMM:2,OCRSRV:4"
    Try to stop the listener.
    Examine the log files under CRS_HOME/log/$HOST/crsd/* and CRS_HOME/log/$HOST/racg/*
    Thanks & Regards
    -Harish Kalra

  • Srvctl remove listener

    Hi,
    I try to cleanup my Cluster according to Metalink
    Steps to Remove Node from Cluster When the Node Crashes Due to OS/Hardware Failure and cannot boot up [ID 466975.1]
    Oracle Version: 10.2.0.4
    Problem:
    srvctl remove listener
    seems to be unknown to system - looks like that srvctl does not know the object: listener
    oracle@node1:/crs_home/bin> srvctl remove listener ora.node2.LISTENER_node2.lsnr
    Usage: srvctl <command> <object> [<options>]
    oracle@node1:/crs_home/bin> srvctl remove listener
    Usage: srvctl <command> <object> [<options>]
    oracle@node1:/crs_home/bin>
    But in the HELP it shows the object listener
    oracle@node1:/crs_home/bin> srvctl remove
    Usage: srvctl <command> <object> [<options>]
    command: enable|disable|start|stop|relocate|status|add|remove|modify|getenv|setenv|unsetenv|config
    objects: database|instance|service|nodeapps|asm|_listener_
    For detailed help on each command and object and its options use:
    srvctl <command> <object> -h
    oracle@node1:/crs_home/bin>
    Question:
    Is it also possible to use crs_unregister to remove the listener ?
    From the Metalink document:
    The srvctl remove listener command used below is only applicable in 10204 and higher releases including 11.1.0.6. The command will report an error if the clusterware version is less than 10204. If clusterware version is less than 10204, use netca to remove the listener
    But I have version 10.2.0.4 - and netca won´t delete the listener, because the maschines are not available
    Christian

    Hi,
    I cannot remove the listener and vip entries
    node1:/oracle/product/10.2.0/db_1/bin # ./srvctl remove nodeapps -n node3
    Please confirm that you intend to remove the node-level applications on node node3 (y/[n]) y
    PRKO-2112 : Some or all node applications are not removed successfully on node: node3
    node1:/oracle/product/10.2.0/db_1/bin # exit
    logout
    oracle@node1:/crs_home/bin> ./crs_stat -t
    Name Type Target State Host
    ora.feuer.db application ONLINE ONLINE node1
    ora....r1.inst application ONLINE ONLINE node1
    ora....SM1.asm application ONLINE ONLINE node1
    ora....C1.lsnr application ONLINE ONLINE node1
    ora.node1.gsd application ONLINE ONLINE node1
    ora.node1.ons application ONLINE ONLINE node1
    ora.node1.vip application ONLINE ONLINE node1
    ora....C2.lsnr application OFFLINE OFFLINE
    ora.node2.vip application OFFLINE OFFLINE
    ora....C3.lsnr application OFFLINE OFFLINE
    ora.node3.vip application OFFLINE OFFLINE
    oracle@node1:/crs_home/bin>

  • Problem removing listener after reload

    Note: Using AS2, Flash 8
    Here's the setup:
    I'm developing a small game based on Wheel of Fortune. The
    .swf for the game is loaded into another flash application on
    another developer's end. Their application is build like a
    slideshow. (switching from one .swf to the next, one of which is my
    game)
    I have a "board" of letter spaces and an input text field for
    guessing the phrase.
    The user can either hit letter keys to guess letters on the
    board OR click in the input field and guess the phrase. The input
    field has onSetFocus and onKillFocus function to prevent both
    happening at the same time. Once a user has entered text in the
    field, they can either hit a button or press enter to check if it's
    the right answer.
    Attached at the bottom is a simplified example of the
    listeners for key presses and the input field's functions:
    Thankfully, all this code works fine, but only the first time
    around. If you go back to the game again, it doesn't work the same:
    If you start typing in the input field, letters pop up on the board
    too. (Which, of course, is not supposed to happen)
    I've been able to test this by testing the movie (Ctrl-Enter)
    and then hitting Ctrl-Enter again to reload.
    After doing a trace(Key._listeners.length); I get 1 the first
    time and 2 the second time.
    What this tells me is that on the second time around, even
    though the input_txt.onSetFocus function should be removing the
    keyListener, the keyListener.onKeyDown function is still executing
    because there are now 2 keyListeners. (1 is removed, but the other
    continues to execute)
    I've tried attempting to remove the keyListener before any of
    the code above executes, but it seems to have no effect.
    How is it possible for there to be 2 listeners by the same
    name?
    How do I make sure that there is only one listener active?

    This is an interesting problem. The Key._listener array must
    still live in the cache while Flash is in operation, it seems if
    you close down the program and then reopen (like if you shut down
    the browser and came back) this doesn't happen, but on reload it
    most certainly does.
    I have a solution for you. Loop through the array and remove
    all registered listeners on reload, place the code below previous
    to the registering of the 'keyListener' object:
    Hey, what did I win! ;)

  • Add listener / remove listener

    hi,
    when I add a listener on a clip or button (like the CLICK Event) that exists in the timeline do I allways have to remove the listener if the Clip is removed from stage? Or will it be removed automaticly by the garbage collection?
    TIA

    It will only be removed automatically if you use a weak reference:
    clip.addEventListener(MouseEvent.CLICK, clickHandler, false, 0, true); //weak ref
    vs:
    clip.addEventListener(MouseEvent.CLICK, clickHandler); //strong ref
    the second version is only removed if you removeEventListener on it.

  • Removing listener services: Windows 2000/XP

    How can i remove a listener service. If you remove it from the net manager, the service stays behind. Currently i have 4 services. I want to delete 3 of them
    Rudy

    Rudolph
    You can you a third party utility to delete any Windows NT Service
    download from here
    http://www.quiver.freeserve.co.uk/binaries/ServiceEnum.zip
    Regards
    Sunil

  • Removing listened to audio books

    Hi how on earth do I remove a already listened to book off my ipod ( i have a 2nd generation click wheel)thanks inadvance for anyones help! [email protected]

    Perhaps you didn't understand what I said.
    If you want the podcasts you've already listened to stay on your iPod, then set your syncing preferences for Podcasts in iTunes to Sync All. (Instead of Sync New...as I said before.) If your preferences are not set this way, then once you listen to a podcast, even for a few seconds, when you re-sync, it will drop off your iPod. Set syncing preferences to SYNC ALL. Then it will keep all of your podcasts synced to the iPod, regardless of whether they are old or new, listened to or not. Also...make sure they have a checkmark in the little box next to them in iTunes.
    I'm not sure what you mean by there being no way to delete an Audio podcast. In your iTunes, just highlight the podcast you want to delete and hit the delete key on your keyboard.

  • Adcfgclone.pl dbTechStack on Target DB removes listener and tnsnames files

    Hello:
    I am doing a first-time clone from my PRD to my TST instance, and have undergone the following steps:
    1. perl adpreclone.pl dbTier on Source DB
    2. perl adpreclone.pl appsTier on Source AppTier
    3. Copy APPL_TOP, COMMON_TOP, ORACLE_HOME, IAS_ORACLE_HOME from Source AppTier to Target AppTier.
    4. Run perl adcfgclone.pl dbTechStack on Target DB.
    At this point is where I start running into issues. The dbTechStack deletes/recreates the tnsnames.ora, sqlnet.ora, and listener.ora files, and the DB can no longer startup. The below is in the logfiles. Am I doing something wrong? I guess the issue is not so much with it deleting/recreating the files, as it is with the values it puts into the files (i.e. DB port = 3001)
    Executing Technology Stack Configuration...
    Executing runAutoConfig...
    Deleting files of type INSTALL
    Checking for file: /u01/oracle/WMSTST/db/tech_st/11.1.0/network/admin/WMSTST_x07tst00/sqlnet.ora
    File exists
    File deleted
    Processing driver file: /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/template/addbtmpl.drv
    Checking for file: /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/install/WMSTST_x07tst00/txkConfigDbOcm.pl
    File exists
    File deleted
    Checking for file: /u01/oracle/WMSTST/db/tech_st/11.1.0/dbs/initWMSTST.ora
    File exists
    File deleted
    Checking for file: /u01/oracle/WMSTST/db/tech_st/11.1.0/network/admin/WMSTST_x07tst00/listener.ora
    File exists
    File deleted
    Checking for file: /u01/oracle/WMSTST/db/tech_st/11.1.0/network/admin/WMSTST_x07tst00/tnsnames.ora
    File exists
    File deleted
    Testing for RAC specific parameters before running autoconfig
    No RAC specific parameters were found, running with CVM
    Starting CVM in INSTE8_SETUP mode
         Using Context file : /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/WMSTST_x07tst00.xml
    Attempting to create a back up of the Context file
    Created back up file of name :
    /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/out/WMSTST_x07tst00/12111155/WMSTST_x07tst00.xml
    ===========================================================================
    Starting synchronization of file system Context file and its templates with those in the database
    Database connection : Failed
    OAM Context editing support feature: Unverified
    OAM Customization support feature : Unverified
    File system template : /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/template/adxdbctx.tmp
    Checking for customizations to Context template
    Warning: Unable to connect to Database.
    If the system is OAM enabled, this may result in loss of customizations.
    Looking for custom template at : /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/template/custom/adxdbctx.tmp
    Custom template : Not available
    Customizations found : None
    File system Context file :/u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/WMSTST_x07tst00.xml
    Checking the Context file for possible updates from the Database
    Warning: Unable to connect to Database.
    If the system is OAM enabled, this may result in loss of customizations and the Context files in DataBase and in the file system may be unsynchronized
    Thanks!
    Edited by: user4434301 on Dec 11, 2012 12:39 PM

    Excellent. I copied the template file from another instance and the following messages were at the end of the logfile:
    Skipping Profile Phase
    Skipping Apply Phase
    Completed runAutoConfig...
    ApplyDBTechStack Completed Successfully.
    However I'm not completely certain this is entirely correct preclone. Can you tell me why the Profile and Apply Phases were skipped and why the following was displayed upon the screen on completion?
    Completed Apply...
    Tue Dec 18 11:25:39 2012
    Starting database listener for WMSTST:
    Running:
    /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/scripts/WMSTST_x07tst00/addlnctl.sh start WMSTST
    Logfile: /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/log/WMSTST_x07tst00/addlnctl.txt
    You are running addlnctl.sh version 120.1.12010000.4
    Starting listener process WMSTST ...
    LSNRCTL for Linux: Version 11.1.0.7.0 - Production on 18-DEC-2012 11:25:39
    Copyright (c) 1991, 2008, Oracle. All rights reserved.
    Starting /u01/oracle/WMSTST/db/tech_st/11.1.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.1.0.7.0 - Production
    System parameter file is /u01/oracle/WMSTST/db/tech_st/11.1.0/network/admin/WMSTST_x07tst00/listener.ora
    Log messages written to /u01/oracle/WMSTST/db/tech_st/11.1.0/log/diag/tnslsnr/x07tst00/wmstst/alert/log.xml
    TNS-01151: Missing listener name, WMSTST, in LISTENER.ORA
    Listener failed to start. See the error message(s) above...
    addlnctl.sh: exiting with status 1
    addlnctl.sh: check the logfile /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/log/WMSTST_x07tst00/addlnctl.txt for more information ...
    That file shows the following:
    Starting database listener for WMSTST:
    Running:
    /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/scripts/WMSTST_x07tst00/addlnctl.sh start WMSTST
    Logfile: /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/log/WMSTST_x07tst00/addlnctl.txt
    You are running addlnctl.sh version 120.1.12010000.4
    Starting listener process WMSTST ...
    LSNRCTL for Linux: Version 11.1.0.7.0 - Production on 18-DEC-2012 11:25:39
    Copyright (c) 1991, 2008, Oracle. All rights reserved.
    Starting /u01/oracle/WMSTST/db/tech_st/11.1.0/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 11.1.0.7.0 - Production
    System parameter file is /u01/oracle/WMSTST/db/tech_st/11.1.0/network/admin/WMSTST_x07tst00/listener.ora
    Log messages written to /u01/oracle/WMSTST/db/tech_st/11.1.0/log/diag/tnslsnr/x07tst00/wmstst/alert/log.xml
    TNS-01151: Missing listener name, WMSTST, in LISTENER.ORA
    Listener failed to start. See the error message(s) above...
    addlnctl.sh: exiting with status 1
    addlnctl.sh: check the logfile /u01/oracle/WMSTST/db/tech_st/11.1.0/appsutil/log/WMSTST_x07tst00/addlnctl.txt for more information ...
    Should I have stopped the DB or listener before running the script?
    Edited by: user4434301 on Dec 18, 2012 9:18 AM

  • Remove Listener from emptyMovieClip?

    Hi,
    I have created several >emptyMovieClips< and have added
    RollOver + RollOut functions.
    How can I remove these functions.
    The EMCs should still remain, but no RollOver effects.
    Thank you for your help,
    regards,
    Luciewong

    Hi,
    Please, I must solve this issue.
    I need to take the RollOver event away, because I want to
    enter text into the EMC's text fields on a next frame.
    I have some emptyMovieClips like this:>
    this.holderSub_mc.createEmptyMovieClip(["sub1a_mc"+a],
    (sub1adepth)+a);//
    this.holderSub_mc["sub1a_mc"+a].createTextField(["sub1a_txt"],
    (sub1adepth_txt)+a,sub1aX, sub1aY, sub1aW, sub1aH);
    this.holderSub_mc["sub1a_mc"+a]["sub1a_txt"].type =
    "dynamic";
    this.holderSub_mc["sub1a_mc"+a]["sub1a_txt"].selectable =
    false;
    this.holderSub_mc["sub1a_mc"+a]["sub1a_txt"].text =
    sub1_array[a];
    for(var a:Number = 0;a<sub1L;a++){
    this.holderSub_mc["sub1a_mc"+a].useHandCursor = true;//
    this.holderSub_mc["sub1a_mc"+a].onRollOver = function(){
    //>do something
    this.holderSub_mc["sub1a_mc"+a].onRollOut = function(){
    //>do something
    But now, on a next Frame I need the Text field of the EMC
    >editable< and >selectable< and
    >type:”input”;
    Therefore I n e e d to take away the EMC’s RollOver
    effect.
    I tried many things, like:
    this.holderSub_mc["sub1a_mc"+a].useHandCursor = false;//
    this.holderSub_mc["sub1a_mc"+a].onRollOver = null;
    removeEventListener(this.holderSub_mc["sub1a_mc"+a],"onRollOver");//
    this.holderSub_mc["sub1a_mc"+a].removeListener("onRollOver");//
    But, still, nothing works, the EMCs have their RollOver and I
    cannot enter into their Text field.
    Thank you for your help.
    Luciewong

  • Listener Removal Strategy

    May be dumb - but I create a lot of objects in an application
    written in 3.0. When they are done doing what they do, I would love
    to be able to call a utility routine that shimply looped through
    the listeners that are registered for all objects and remove them
    where is .target is the object I am done with. I don't know if this
    is possible but it would significantly simplify my code and I
    suspect the internals of listener registration, removal and cycling
    does the .target check anyways......
    Am I barking up the wrong tree, is this something someone had
    done or is the mere thought of it stupid from the start......
    bob

    Kglad - no, just the listeners. I would like something like
    for each(listener in the listener stack) {
    if listener.subscribed_to_target = mytarget
    remove listener
    In my coding - any listeners set up in an object are dealt
    with by that object when done - typical remove_listeners funtion
    removing listeners set-up, typically on instantiation of the
    object. Listners that subscribe to the object events from other
    objects deal with removal separately.
    It would clean things up tremendously to simply walk the
    listener stack and where the target is the object that is no longer
    needed, I could have some iteration to remove all listeners that
    have that object as a target.....
    Hope this makes sense....
    ccoonen - I fear the use of "weak reference" but do so as is
    suggested in some texts. If I could confirm that the listener was
    removed and collected as of a certain point I would follow your
    strategy, but I always hesitate to rely on something I can not
    test.

  • Netca: "a listener with the name already exists" after bombing out

    Installing a listener via netca on a CentOS 5 x64 11g RAC setup.
    I had a typo in the $ORACLE_HOME shell variable in .bash_profile for the oracle user. This caused netca to bomb out with a series of 'file not found' and 'directory not found' errors. netca did not complete.
    netca did, however, create listener LISTENER on port 1521 on both my nodes. There is no listener.ora file anywhere, due to the bad $ORACLE_HOME directory.
    I'd like to delete this and start over so that netca completes normally.
    I cannot use netca to delete listener LISTENER. The delete option is greyed out. I did reboot, and tried killing the tsnlsnr process.
    crs_stat -p shows the following:
    NAME=ora.rac1.LISTENER_RAC1.lsnr
    TYPE=application
    ACTION_SCRIPT=/u01/app/oracle/product/11.1.0/db_1/bin/racgwrap
    ACTIVE_PLACEMENT=0
    AUTO_START=1
    CHECK_INTERVAL=600
    DESCRIPTION=CRS application for listener on node
    FAILOVER_DELAY=0
    FAILURE_INTERVAL=0
    FAILURE_THRESHOLD=0
    HOSTING_MEMBERS=rac1
    OPTIONAL_RESOURCES=
    PLACEMENT=restricted
    REQUIRED_RESOURCES=ora.rac1.vip
    RESTART_ATTEMPTS=5
    SCRIPT_TIMEOUT=600
    START_TIMEOUT=600
    STOP_TIMEOUT=600
    UPTIME_THRESHOLD=7d
    USR_ORA_ALERT_NAME=
    USR_ORA_CHECK_TIMEOUT=0
    USR_ORA_CONNECT_STR=/ as sysdba
    USR_ORA_DEBUG=0
    USR_ORA_DISCONNECT=false
    USR_ORA_FLAGS=
    USR_ORA_IF=
    USR_ORA_INST_NOT_SHUTDOWN=
    USR_ORA_LANG=
    USR_ORA_NETMASK=
    USR_ORA_OPEN_MODE=
    USR_ORA_OPI=false
    USR_ORA_PFILE=
    USR_ORA_PRECONNECT=none
    USR_ORA_SRV=
    USR_ORA_START_TIMEOUT=0
    USR_ORA_STOP_MODE=immediate
    USR_ORA_STOP_TIMEOUT=0
    USR_ORA_VIP=
    My question...how do I delete this listener (and the one on rac2) so that I can re-install them correctly using netca?
    Edited by: user611309 on Apr 21, 2009 12:12 PM

    Hi,
    the listener is still registered with Oracle Clusterware. This registration will stay regardless of the existence of listener.ora and related files. Thus, you need to get rid of the registration, if you want to do it from scratch (which may not be required, if the listener starts and stops correctly). However, from your Clusterware home, please, issue:
    srvctl remove listener -h
    Usage: srvctl remove listener -n <node_name> [-l <listener_name>]
    -n <node> Node name
    -l Display listener configuration
    -h Print usage
    Hope that helps. Thanks,
    Markus

  • What is listen.exe and do i need it?

    this program occasionally crashes, and seems to cause other problems when it does.  I do not use mc3 or the remote that came with the mega 180, and I don't have much use for the lcd display because the 180 is tucked away in a cabinet, and i can't see it.  I DO use MSI Radio Tuner.  Can I remove listen.exe without giving up anything?

    Mmmmm, maybe listen.exe is responsible of displaying stuff on the LCD. Imagine the situacion: Media Player connects to listen.exe via a local socket and sends the information that must be displayed on the LCD. Then, listen.exe receives that information and sends it to the lcd. In that situation, we should discover that protocol to GAIN THE CONTROL OF THE LCD!!
    Yes, maybe I'm just dreaming!    But... what if...
    Let's research a little.

  • Remove default event listeners

    I am trying to use JComponent(JList, JTable) with a different behavior on mouse events. JTable for example selects the cells while dragging. I want to remove all curent listeners, I found removelistener, but I dont find getlisteners (removelistener requires the removed listener ).

    getListeners
    EventListener[] getListeners(Class�listenerType)
    Return an array of all the listeners that were added to this JComponent with addXXXListener(), where XXX is the name of the listenerType argument. For example, to get all of the MouseListeners for the given Component c, one would write:
    MouseListener[] mls = (MouseListener[])(c.getListeners(MouseListener.class))
    If no such listener list exists, then an empty array is returned.

  • Can we remove a OS user after RAC decomission

    Hi All,
    I have a situation that we decommissioned a RAC environment long back and now I am trying to remove the user corresponding to that RAC environment at OS level.
    here is the steps followed.
    ./crsctl delete serverpool ora.EBL
    ./srvctl remove listener -l LISTENER_EBL_L192
    I able to delete serverpool and remove listener, but ,I am not able to restart the CRS services with below error,
    2013-08-21 18:46:20.680: [  CRSSEC][1462204736] {1:61647:2} Exception: OwnerEntry construction failed to retrieve user id by name with ACL string: owner:eblval:rwx and error: 1
    2013-08-21 18:46:20.680: [  CRSSEC][1462204736] {1:61647:2} Exception: ACL entry creation failed for: owner:eblval:rwx
    Can we remove the user corresponding to the decommissioned RAC environment, I have 2 node cluster and another RAC environment is running on the same nodes.
    it is EBS - RAC environment and CRS is 11.2.0 and DB is 10.2.0.4 with 11.5.10.2 EBS.
    Please review my case and advise.
    Thanks in advance,
    Venkat

    Thanks Rajiv for the information,
    I will open the SR and have Oracle blessings on the same.
    here the steps  used.
    1) Brought down the CRS and removed the user eblval
    2) rebooted the server, which will restart the crs services
    3) verified the CRS
    [root@l191 bin]# ./crsctl start crs
    CRS-4640: Oracle High Availability Services is already active
    CRS-4000: Command Start failed, or completed with errors.
    log file entry crsd.log
    2013-08-21 18:42:54.961: [   CRSPE][3209136448] {1:53022:2} Reading (16) types
    2013-08-21 18:42:55.091: [   CRSPE][3209136448] {1:53022:2} Reading (2) server pools
    2013-08-21 18:42:55.301: [   CRSPE][3209136448] {1:53022:2} Reading (21) resources
    2013-08-21 18:42:58.850: [   CRSPE][3209136448] {1:53022:2} Finished reading configuration. Parsing...
    2013-08-21 18:42:58.850: [   CRSPE][3209136448] {1:53022:2} Parsing resource types...
    2013-08-21 18:42:58.877: [  CRSSEC][3209136448] {1:53022:2} Exception: OwnerEntry construction failed to retrieve user id by name with ACL string: owner:eblval:rwx and error: 1
    2013-08-21 18:42:58.890: [  CRSSEC][3209136448] {1:53022:2} Exception: ACL entry creation failed for: owner:eblval:rwx
    2013-08-21 18:42:58.900: [    CRSD][3209136448] {1:53022:2} Dump State Starting ...
    2013-08-21 18:42:58.900: [    CRSD][3209136448] {1:53022:2} State Dump for RTILock
    2013-08-21 18:42:58.900: [    CRSD][3209136448] {1:53022:2} Lock State List is busy, skipping ..
    2013-08-21 18:42:58.900: [   CRSPE][3209136448] {1:53022:2} Dumping PE Data Model...:DM has [0 resources][0 types][0 servers][0 spools]
    4) Now recreated the user and able to bring up the CRS with no issues
    Thanks,
    Venkat

  • Adding and removing listeners help please...

    hi guys i have a pop up box that adds a listener depedent on a variable.
    like such
         if(upload_typ != 'O' && upload_typ != 'E')
        {RPanel.DSUB.addEventListener(MouseEvent.CLICK, DatabaseSend)};
       if(upload_typ == 'O')
        {RPanel.DSUB.addEventListener(MouseEvent.CLICK, DataSendOntme)};
        if (upload_typ == 'E')
        {RPanel.DSUB.addEventListener(MouseEvent.CLICK, EncumSendVal)}
    how do i remove the listeners? i continue to see examples of removing listeners but yet i dont see what the remove listener functions should do.
      any help would be greatly appreciated.
    Miguel

    In your case, because you can't be sure what listener was added, you can remove them all, and if they have not been added, no harm:
    RPanel.DSUB.removeEventListener(MouseEvent.CLICK, DatabaseSend);
    RPanel.DSUB.removeEventListener(MouseEvent.CLICK, DataSendOntme);
    RPanel.DSUB.removeEventListener(MouseEvent.CLICK, EncumSendVal);
    Alternatively, you could register the ones that actually get added to an object (associative array) and remove only those when necessary.
    If this post answers your question or helps, please mark it as such. Thanks!
    http://www.chikaradev.com
    Adobe Flex Development and Support Services

Maybe you are looking for