Problem with event listener

Hello

We have an event listener that does not seem to receive all events insertion of a table.

Here is the SYS. Order ADD_LISTENER that we use:

call the SYS. ADD_LISTENER ('tpch ', 'SQLFIRE', 'lineitem', 'demo.vmware.sqlfire.greenplum.MultiHubProxyDispatcher',' connectionurl = jdbc:sqlfire: | numproxies = 4 | sqlfire = username: password = sqlfire ", null);

MultiHubProxyDispatcher() code distributes the rows inserted between the four tables proxy (proxy_0 through proxy_4). I have attached the MultiHubProxyDispatcher() code in this post.

Thus, after 2400 lines are inserted in the lines of only about 125 lineitem table are spread to each of the tables four proxy.

sqlf > select count (*) in the sqlfire.lineitem;
1
-----------
2400

1 selected line
sqlf > select count (*) in the sqlfire.proxy_0;
1
-----------
125

1 selected line
sqlf > select count (*) in the sqlfire.proxy_0;
1
-----------
125

1 selected line
sqlf > select count (*) in the sqlfire.proxy_1;
1
-----------
129

1 selected line

This same event receiver code worked with SQLFire v1.0, we have recently updated to v1.0.3.1 and that's when we started to see the problem. I don't see anything unusual in the newspapers. Is there something that has changed with the SYS. Order ADD_LISTENER are we missing?

Thank you
Sean

Hi Sean,.

I think you want to attach the code for demo.vmware.sqlfire.greenplum.MultiHubProxyDispatcher but I see only MicroBatchListener.

Looks like you are using both the AsyncEventListener, but also the listener to table which could be added through the SYS. Procedure ADD_LISTENER.

Can you please write how you use the combination.

Please note async event listener cannot be added through sys.ad_listener.

Thank you

Neeraj

Tags: VMware

Similar Questions

  • Problems with events in flex

    Hello. I'm a guy AS2 and Flash CS3. I started to learn AS3 and Flex 3 transfer. But I had a problem w / events in AS3. I add a component of the canvas to the scene. On this canvas, I added 3 different events: mouse down, mouse move, and mouse upwards. When the mouse move is triggered, it is impossible for me to get the mouse an event triggered, and vice versa, when the mouse upward is triggered, there is no way to get the mouse don't move event triggered. Is there someone to help this newbie with this problem? Any help will be much appreciated.

    Code:

    " < = xmlns:mx mx:Application ' http://www.Adobe.com/2006/MXML layout "="absolute">
    < mx:canvas id = "myCanvas" x = "50" y = "50" width = "500" height = "500" click = "event_1 (); "mouseMove ="event_2 (); "mouseUp ="event_3 (); ">
    < / mx:Canvas >

    < mx:Script >
    <! [CDATA]
    Import mx.controls.Alert;
    import flash.events. *;
    public function event_1 (): void
    {Alert.show ("first event fired") ;}}
    public function event_2 (): void
    {Alert.show ("Second event fired") ;}}
    public function event_3 (): void
    {(Alert.show ("troisième événement déclenché) ;}}
    < / mx:Script >
    < / mx:Application >

    The problem is that your event listeners are not properly configured.

    Your "p1" to listen for the 'mouseUp' event because he was managing the events at this time.

    This is your modified and test code, as long as the mouse is down on the canvas, she fares at the time where you 'mouseUp' stop drawing.


    http://www.Adobe.com/2006/mxml"layout ="absolute"creationComplete =" initApp () ">"

    import com.myDomain.Lines.Main;
    Mx.graphics import. *;
    Import mx.binding.utils.BindingUtils;
    import flash.events.IOErrorEvent;
    import flash.events.Event;
    import flash.display. *;
    Import mx.controls.Alert;
    import com.myDomain.Lines.Main;
      
    public var p1:Main;
    public var pre:Number = 0;
      
    public function initApp (): void
    {
    P1 = new Main();
    this.addChild (p1);
              
    }
     
    public function prepToDraw (): void
    {
    pre = 1;
    }
     
    public void startDraw(event:MouseEvent):void
    {
    if(pre == 1)
    {
    P1. Graphics.Clear ();
    var newColor:int = 0xFF00FF;
    var iniX:Number = mouseX;
    var iniY:Number = mouseY;
    var lineWidth:Number = 10;
    P1. Graphics.LineStyle (width of stripe, newColor);
    P1. Graphics.MoveTo (gwenael, iniY);
    }
       
    imageView.addEventListener (MouseEvent.MOUSE_MOVE, drawLine);
    P1.addEventListener (MouseEvent.MOUSE_UP, stopDraw);
    }
      
    public void drawLine(event:MouseEvent):void
    {
    if(pre == 1)
    {
    P1. Graphics.LineTo (mouseX, mouseY);
    }
    }
    public void stopDraw(event:MouseEvent):void
    {
    imageView.removeEventListener (MouseEvent.MOUSE_MOVE, drawLine);
    }
     
     
    ]]>


     
    mouseDown = "{startDraw (event)}" > "
     



    HTH,

    Kenny

  • Problem with Click listener on the Sprite instances

    Hi all

    I am a beginner in Flash and ActionScript 3.0 platform. I don't know how and where post such queries/problems. So far, here, I posted a simple questions only. I feel that the complex problem I ever worked until now.

    Come to my request, I am dynamically load an image on stage. When I click on the loaded image, I'm drawing of a circle/rectangle [which is of type Sprite] pixel-exact location on the image and doing these circles/rectangles (Sprite_objects) visible itself. In this way, I would add as many Sprites_objects, until I keep clicking on the same image present on the stage.

    My application code (which displays the colorful red rectangles when you click on the image) is as follows:

    / * If you copy the code into your actionsPanel directly, then make sure "image1.jpg" file * is present next to the .fla file. Since he gets support iff it is present in the same directory. * / var myContainer:MovieClip = new MovieClip(); var temp_x:int, temp_y:int; A dynamic image loading and adding listeners... var urlReq:URLRequest = new URLRequest ("image1.jpg"); var loader: Loader = new Loader(); Loader.Load (urlReq); myContainer.addChild (loader); loader.contentLoaderInfo.addEventListener (Event.COMPLETE, imgLoaded); addChild (myContainer); function imgLoaded(event:Event):void {(loader.x = 50; / /(stage.stageWidth-pictLdr.width) / 2;}      Loader.y = 50; (/ /(stage.stageHeight-pictLdr.height) / 2; } //Adding red rectangle (type Sprite) in a container. var redBoxContainer:Sprite = new Sprite(); addChild (redBoxContainer);    Event listener when clicking on the image myContainer.addEventListener (MouseEvent.MOUSE_DOWN, setNewPosition); function setNewPosition (event: MouseEvent): void {temp_x = event.localX;      temp_y = Event.localY;           trace ("children of the redboxcontainer =" + redBoxContainer.numChildren);     var redRect:Sprite = new Sprite();     redRect.graphics.beginFill (0xff0000);     redRect.graphics.drawRect (event.localX, event.localY + 47, 7, 7 + 47);     redBoxContainer.addChild (redRect);        trace ("redRect.visible:" + redRect.visible);            redRect.addEventListener (MouseEvent.CLICK, onRedContainer);      function onRedContainer(e:MouseEvent):void {trace ("event listener for red container");      } }

    I think that you feel the code is simple. I'm at that level about Flash development [i.e., newbie].

    Now my requirement is as follows:

    If I click on these created Sprites_objects on the image, then the clicked in last/latestly Sprites_object must be read/represented by highlighted [i.e., it is visible must be made of different like adding border of Sprites_object (or) by changing the size of clicked Sprites_object etc.,] among the other existing circles/rectangles on the image. So, at once, only one Sprite_object need to be highlighted.

    For example, if I placed 10 circles/rectangles on the loaded image by successively clicking 10 times on different parts of the same image. Assume that, first of all, I click on 5th Sprite_object, then it should get highlighted. Then after that, if I click again on the 2nd Sprite_object, now, 5th Sprite_object (previously clicked) must be off highlighted and 2nd must get highlighted. In this way, it must continue.

    I think you understood my requirement with the example above. If you have any doubts, I am always ready to explain. I ask you people to spend feww minutes of your valuable time to fill the solution in response to my post.

    Thanks in advance...

    I'm waiting for your answers...

    Srihari.Ch

    Try:

    / * If you copy the code into your actionsPanel directly, then make sure "image1.jpg" file
    * is present next to the .fla file. Since he gets support iff it is present in the same directory.
    */
    var myContainer:MovieClip = new MovieClip();
    var temp_x:int, temp_y:int;

    var prevRedRect:Sprite;
    var gf: GlowFilter = new GlowFilter();

    A dynamic image loading and adding listeners...
    var urlReq:URLRequest = new URLRequest ("image1.jpg");
    var loader: Loader = new Loader();
    Loader.Load (urlReq);
    myContainer.addChild (loader);
    loader.contentLoaderInfo.addEventListener (Event.COMPLETE, imgLoaded);
    addChild (myContainer);
    function imgLoaded(event:Event):void {}
    Loader.x = 50; (/ /(stage.stageWidth-pictLdr.width) / 2;
    Loader.y = 50; (/ /(stage.stageHeight-pictLdr.height) / 2;
    }
    Add red rectangle (type Sprite) in a container.
    var redBoxContainer:Sprite = new Sprite();
    addChild (redBoxContainer);

    Event listener when we click on the image
    myContainer.addEventListener (MouseEvent.MOUSE_DOWN, setNewPosition);
    function setNewPosition(event:MouseEvent):void {}
    temp_x = Event.localX;
    temp_y = Event.localY;
    trace ("children of the redboxcontainer =" + redBoxContainer.numChildren);
    var redRect:Sprite = new Sprite();
    redRect.graphics.beginFill (0xff0000);
    redRect.graphics.drawRect (event.localX, event.localY + 47, 7, 7 + 47);
    redBoxContainer.addChild (redRect);
    trace ("redRect.visible:" + redRect.visible);
    redRect.addEventListener (MouseEvent.CLICK, onRedContainer);
    function onRedContainer(e:MouseEvent):void {}
           {if(prevRedRect!=null)}
    prevRedRect.filters = null;
    }
    prevRedRect = Sprite (e.currentTarget);
    e.currentTarget.filters = [gf];

    trace ("event listener for red container");
    }
    }

  • URGENT: Problem of EVENT listener

    Hi all
    Thanks for your time. I am facing a little problem with the event dispatcher and the event listener to be added. Well, I'll explain the problem.

    I have a MovieClip named BUTTON_SET and I gave "ButtonSet.as" class link.
    Inside this BUTTON_SET, I'll have a few buttons and they also have "UIButton.as" as a binding class

    UIButton expedition press and release events, but unable to capture it using the button class. Here, I enclose the Code and I gave the URL Source too.

    to my knowledge: UIButton class is not triggered when the button is ready for addListener.
    Please help me solve this problem.

    If I can't find a solution, I need to change all my class structures.

    CLICK HERE TO SEE THE SOURCE CODE

    According to your Code, when you call the InitHandler Functionction buttons may or may not be launched. Then use the Enterframe to check if its charging or not.

    Note that in the button to replace the Manager call init.

    this.onEnterFrame = Delegate.create (this, initHandler);

    a_l'_interieur_de this initHandler, remove the function that will help you if you do not use any Enterframe for any other manipulation)

    delete this.onEnterFrame;

  • Problem with the listening Service: Long delay beginning listener, intermittent connections

    I have problems to connect to my Oracle database.  I don't know what was the cause, but now when I connect to a database that has been working well for the past two years, I usually get an ORA-12541 error.

    I run lsnrctl status on the server and get a prinout like this:

    Copyright (c) 1991, 2010, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=dqaswn02) (PORT = 1521)))
    AMT-12541: TNS:no listener
    AMT-12560: TNS:protocol adapter error
    AMT-00511: no listener
    Windows 64-bit error: 61: unknown error
    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = IPC) (KEY = EXTPROC1521)))
    AMT-12541: TNS:no listener
    AMT-12560: TNS:protocol adapter error
    AMT-00511: no listener
    Windows 64-bit error: 2: no such file or directory

    I also tried to manually stop the service through services.msc, then by restarting via lsnrctl start, but when I do this I get a very long delay (10 + minutes) before he comes back with something like:

    TNS-01153: failed to process the string: 0i

    I'm quite lost as to what is wrong.  I've been messing around with listener.ora, but I don't see anything difficult in there.  Here's a copy:

    listener.ora # Network Configuration file: E:\app\myc0714\product\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora
    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = E:\app\myc0714\product\11.2.0\dbhome_1)
    (= Extproc PROGRAM)
    (ENVS = "EXTPROC_DLLS=ONLY:E:\app\myc0714\product\11.2.0\dbhome_1\BIN\OraClr11.dll")
    )
    )

    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = dqaswn02) (PORT = 1521))
    )
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))
    )
    )

    # ADR_BASE_LISTENER = E:\app\myc0714
    LOG_FILE_LISTENER = LISTEN PORT
    TRACE_LEVEL_LISTENER = SUPPORT
    TRACE_FILE_LISTENER = LISTEN PORT

    A few times during that time, I was able to connect to the server, via sqlplus, however, it took 10 minutes before the connection is online.  Once I'm connected, I can ask my paintings as expected, but I need an application to connect.

    If anyone has any ideas on what could be the problem, please let me know.

    In fact, there was another thing, I changed when I finally got it works, although I don't know if it was related or not.  In my folder with my track logs, I had a huge (> 4 GB) listener.log file.  I deleted this file right before that I ran the command netsh command to reset and then restarted.  This file was also a bit special, because it had not been updated since around the time that I first encountered this problem.  It seems to be updated on a minute by minute basis, now that I've removed the old.  Is there a problem with this file becomes too big?  My drive was not out of space, but it is very curious that this stopped file update on the same day as when I started having the problem and now works properly again.  I wish I had noted the exact time until I deleted it.

    Link:

    Problem of Listener.log & #8211; large file | Obtained & #039; s Blog

  • Problem with event CreateJS

    I am trying to add an event listener to one of my symbols in Flash. Here is the code:

    / * js

    This.Stop ();

    function handleMouseEvent (evt)

    {

    evt.target.gotoAndStop ("over");

    }

    this.addEventListener ('mouseover', handleMouseEvent);

    internship. Update();

    */

    The symbol has been created on the stage and when published by using the CreateJS extension, it errors every time in the browser to the line where I use the addEventListner method. The error is basically saying there is no method like the one defined. Now, in this video of Grant Skinner, it does basically the same thing but with an older version of the API CreateJS: lish-to-html5-using-the-adobe-flash-professional-toolkit-for-createjs/ http://tv.adobe.com/watch/getting-started-with-flash-professional-toolkit-for-createjs/pub

    Why it doesn't work in my example?

    The issue is that toolkitforcreatejs is using Easeljs version 0.5.0 new event model was introduced in version 0.6.0. Update of version 0.6, and it should work for you.

  • Menu/submenu management and problem of event listening

    Hi guys,.

    I'm creating a flashwebsite and I have a problem with the submenu appearing / disappering.

    What is extremely easy in html/jquery takes me overburned in actiuonscript: bring up a submenu only when the mouse cursor is on its button and not on himself.

    Indeed, I have my button/MC, which contains its submenu (which is a vertical list of MC), and when I go top, submenu appears, when I leave, submenu becomes invisible.

    BUT, when I go on the space below the button (where is my submenu invisible), submenu become visible, another time. I know that the cause is the listener associated with the main key is related to all its nested MC.

    My question is: there is a way of asserting a listener to a MC and not for all nested elements?

    If not, what shopuld do my pourpose?

    function createNav (lang: String = "it") {}


    var nav:Array = new Array ({label: "CHI SIAMO", url: "..."}) /Chi-siamo/index.php'},
    {label: 'PRODUZIONE ESECUTIVA', url: '... '} /Produzione-esecutiva/index.php'},
    {label: "FILMOGRAFIA", url: "..."} {"/ filmografia/index.php"},
    {label: "CAMPILOTS", url: ""},
    {label: "PROGETTI", url: ""},
    {label: "NEWS", url: ""},
    {label: "CONTACTS", url: ""},
    {label: "LANGUAGES", url: "", submenu: new Array ({label: "ITALIANO", url: ""},)}
    {label: "INGLESE" ", url:" "},
    {label: "TEDESCO" ", url:" "},
    {label: "INGLESE" ", url:" "}
    )});
    var navHeight:Number = 25; single height of the element

    CREATE BUTTON
    for (var i = 0; i < nav.length; i ++) {}
    var point: MovieClip = new NavLink();

    Item.Label.Text = nav [i] .label;
    Item.href = nav [i] .url;

    If (.submenu nav [i]! = null) {//SUBMENU CREATION

    for (var j: int = 0; j < nav [i].submenu.length; j ++) {}
    Sublabel var = new SubLabel();
    subLabel.x = subLabel.y = 18 * (j + 1);
    subLabel.tfMC.text = nav [i] .submenu [j] .label;
    item.addChild (subLabel);
    }
    }

    item.buttonMode = true;
    item.mouseChildren = false;
    item.addEventListener (MouseEvent.CLICK, {Function
    href = e.target.href;
    gotoAndPlay ('page2page');
    });

    var subMenuAnim:Array = new Array();

    item.addEventListener (MouseEvent.MOUSE_OVER, {Function
    var iconCocc:MovieClip = e.target.coccinella;
    var iconRotTween:Tween = new Tween (iconCocc, "rotation", Back.easeOut, iconCocc.rotation, (iconCocc.rotation + ((Math.random () * 200) + 200)), 2, true);

    APPREAING ANIMATION
    }
    });

    item.addEventListener (MouseEvent.MOUSE_OUT, {Function
    for (var i: int = 0; i < subMenuAnim.length; i ++) {}
    DISAPPREAING ANIMATION
    }
    subMenuAnim = new Array();
    });

    Item.y = navHeight * i;
    Item.Visible = false;

    Item.Coccinella.rotation = (Math.Random () * 200);

    nav_container. AddChild (Item);
    }

    What you do to make the submenu invisible?  If you set its visible property to false it does not interact with the mouse, but if you change its property alpha to 0, it will react.

  • problems with event handlers

    Hello world. I have a problem with the start of the event handlers in InDesign CS3. The example code I wrote the tutorial book, will not work. The message that I get when I open a new document is: "error string: the requested operation could not be performed because the object no longer exists." Here's the code I used:

    --------------------------------------

    main();
    main() {} function
    myEventListener var = app.addEventListener ("afterNew", myDisplayEventType, true);
    }

    function myDisplayEventType (myEvent) {}
    Alert ("this event is the" + myEvent.eventType + "event.");
    }

    ------------------------------------

    What's not here? Thanks in advance,

    mileking

    Hi mileking.

    Use the code example below:

    Code example
    #targetengine "session".
    main();
    main() {} function
    myEventListener var = app.addEventListener ("afterNew", myDisplayEventType, false);
    }

    function myDisplayEventType (myEvent) {}
    Alert ("this event is the" + myEvent.eventType + "event.");
    }

    Kind regards

    River. P

  • Problem with the listener in environment of multiple databases

    Hello world!

    I have a server that is running about 10 databases. And 5 listeners who manage these databases. Some listener manage 1 DB, another can handle more than 1.

    Listener ESSENTIALS that I create the first run (top of the listener.ora file), only 2 DB. But when I show the status of the listening port, it shows the listener to manage all DBs.

    Another listener works normally.

    Could you help me solve the problem?

    Thank you!

    TuanNV

    You must set the LOCAL_LISTENER parameter in each instance to control what other they register with. You have probably enabled by default, so they all register with all that is listening on port 1521.

    Moreover, some people here get mad at the idea of running more of a listener. Be warned.

  • Dynamics of code in loop problem with event handlers

    Hello

    What I'm trying to do, is to assign dynamically a deployment and behavior pleased each movieclip with a certain name on my stage. I'm a loop through and attach a function to the event of each movieclip. So far, it works. All the clips on roller and more doing something. However the problem I'm having is dynamically changing values in each function for each different movieclip in a loop. For example, I store the clip I'm targeting original X and Y coordinates in an array that I push in the value to each loop. I draw it to test and trace it correctly on each loop of each value of X and Y for this clip. The problem I have is I am tempted to call orgX and orgy to each loop and attach that to each function, but all the clips using the last value in the table. It is not dynamically attaching the new orgX and orgy to each individual event deployment clips. All deployment events and more are called for each clip, but when I try to put any dynamic code in the function he always uses only the last value. Even if I put a trace in the RollOver event and try to find the instance name of movieclip clips all the clips to trace the last name of the clip on working capital. My logic looks OK but it has to do with how flash events attached runtime? How can I solve this problem?

    These tables are not something and orgX and orgy change values with each iteration of the loop for. at the moment where you deploying your movieclip orgX and orgy will be the last value in the loop for.

    to remedy to try:

  • Problem with event handlers

    Hello

    It seems that my event handlers do not work for some reason any. Could someone help me please?

    That's what I do:

    (1) create a simple Java class (with all necessary libraries) and compile to setMiddleName.jar:

    --

    bunch of pre-treat;

    import...

    public class setMiddleName implements {PreProcessHandler}

    public setMiddleName() {}

    Super();

    }

    @Override

    Public Sub initialize (HashMap < String, String > parameters) {}

    }

    @Override

    public EventResult run (long processId, long eventId, orchestration of the Orchestration)

    {

    Parameters HashMap < String, Serializable > = orchestration.getParameters ();

    String middleName = getParamaterValue (settings, "First name");

    If ((middleName == null) | middleName.equals("")) {}

    String firstName = getParamaterValue (settings, "First name");

    middleName = firstName.substring (0, 1);

    orchestration.addParameter ("middle name", middleName);

    }

    return new EventResult();

    }

    private String getParamaterValue (< String, Serializable > HashMap parameters,

    String key) {}

    {if (Parameters.ContainsKey (Key))}

    String value = (parameters.get (key) instanceof ContextAware)? (String) ((ContextAware) settings)

    .get (Key)). GetObjectValue(): parameters.get (key) (string);

    Returns the value;

    }

    else {}

    Returns a null value.

    }

    }

    @Override

    public BulkEventResult run (long arg0, long arg1, arg2 BulkOrchestration) {}

    TODO self-generating method stub

    Returns a null value.

    }

    @Override

    public void offset (long arg0, arg1 is long,

    {AbstractGenericOrchestration arg2)

    TODO self-generating method stub

    }

    @Override

    public cancel Boolean (long arg0, arg1 is long,

    {AbstractGenericOrchestration arg2)

    TODO self-generating method stub

    Returns false;

    }

    }

    --

    (2) create plugin.xml

    --

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < oimplugins xmlns: xsi =" http://www.w3.org/2001/XMLSchema-instance ">

    < pluginpoint = "oracle.iam.platform.kernel.spi.EventHandler plugins" >

    < pluginclass = "preprocess.setMiddleName plugin" version = "1.0"

    name = "setMiddleName" / >

    < / plugins >

    < / oimplugins >

    --

    (3) package zip file with the following content:

    --

    /plugin. XML

    /lib/setMiddleName.jar

    --

    and copy it to /oracle/plugins/setMiddleName.zip

    (4) create EventHandlers.xml and put it in /oracle/eventhandlers/metadata/preProcessEH/EventHandlers.xml

    --

    <? XML version = "1.0" encoding = "UTF-8"? >

    " < eventhandlers xmlns =" http://www.Oracle.com/schema/OIM/platform/kernel "" xmlns: xsi = " http://www.w3.org/2001/XMLSchema-instance " xsi: schemaLocation = " http://www.Oracle.com/Schema/OIM/Platform/kernel orchestration - handlers.xsd" >

    < entity-type of the action handler = "User" operation = "CREATE" name = "setMiddleName" Stadium = "preprocess" order = "1050" sync = "TRUE" / >

    < / eventhandlers >

    --

    (5) change ant.properties:

    --

    WLS. Home=/Oracle/MW/wlserver_10.3/

    IOM. Home = / Oracle/MW/Oracle_IDM1/Server

    Login.config = ${IOM. Home}/config/authwl.conf

    MW. Home = / Oracle/MW

    --

    and call 'Ant f pluginregistration.xml register' and specify the location of setMiddleName.zip. Result: [echo] Plugin version 1.0 reregistered preprocess.setMiddleName, BUILD successfully.

    (6) Edit weblogic.properties:

    --

    wls_servername = oim_server1

    application_name = OIMMetadata

    metadata_from_loc = / oracle/eventhandlers

    --

    and call. / weblogicImportMetadata.sh, which translates as:

    --

    Now to the tree of domainRuntime. It is a tree read-only with DomainMBean as the root.

    For further assistance, use the help (domainRuntime)

    Disconnected from the weblogic server: AdminServer

    End of import of metadata script...

    Leaving WebLogic Scripting Tool.

    --

    7)./PurgeCache.sh call all THE

    (8) restart IOM

    (9) result: the event handler does nothing. I don't have the impression to be called never, I tried to add logging resulting not in what either.

    Using the administration console export tool, I check that the handler is however there (it shows as/metadata/preProcessEH and I can export).

    What I am doing wrong? I forgot something?

    Thank you

    Max

    Hello

    In your EventHandlers.xml

    "http://www.Oracle.com/Schema/OIM/Platform/kernel" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" "xsi: schemaLocation =" "http://www.oracle.com/schema/oim/platform/kernel orchestration - handlers.xsd" > "

    I don't see the class?

    See the example below

    <>

    Class = "Oracle.OIM.extensions.PreProcess.SamplePreprocessExtension"

    entity-type = 'User '.

    operation = "CRΘER."

    name = "SetUserMiddleName".

    Stadium = "pretreatment".

    order = "1000".

    Sync = "TRUE" / >

  • Problem with file listener

    When I wanted to know the status of a listener, it makes me the status of the listener on the other... it's just two different listeners, please help me understand what

    [oracle@XXXXX admin] $ lsnrctl status listener_postgres

    LSNRCTL for Linux: Version 11.2.0.3.0 - Production on 25-SEP-2013 15:46:06

    Copyright (c) 1991, 2011, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP (PORT = 1524))(HOST=scfdb001)))

    STATUS of the LISTENER

    ------------------------

    Alias listener_amazon

    Version TNSLSNR for Linux: Version 11.2.0.3.0 - Production

    Start date 13 - SEP - 2013 11:28:07

    Uptime 12 days 4 h 17 min 59 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Parameter Listener of the /oracle/database/11.2.0.3/network/admin/listener.ora file

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp (PORT = 1524))(HOST=scfdb001)))

    Summary of services...

    Service 'mywlddv2' has 1 instance (s).

    Instance of 'mywldqa', status UNKNOWN, has 1 operation for this service...

    The command completed successfully

    [oracle@scflsdb001 admin] $

    user13573211 wrote:

    I understand the question, I understand that I shouldn't be the same user port for two different listeners

    The operating system prevents listening on the same port of two process/listeners simultaneously.

    Only one listener can listen on multiple ports on multiple IP #s for several databases, execution of multiple versions of Oracle.

    then explain why more than 1 listener exists on your system?

  • Problem with headphone

    Hello I have a problem with the listener; I have to turn off recording dynamic earphone and make the static record... so far could not do;

    theres no listener registered with srvctl as you can see, not out of srvctl config listener
     [oracle@localhost admin]$ srvctl config listener
                PRCN-2044 : No listener exists 
    and there is no listener.ora under $GRID_HOME/network/admin or $ORACLE_HOME/network/admin (I deleted listener.ora under the two location), but even if I delete two location listener.ora when I restart listener I see always earpiece is in place. (perhaps PMON listener departure himself tried to extinguish, but he could not manage as well)

    I can't connect to remote database when I display of database start with the Instance 'secondarydb', LOCKED status nomount.lsnrctl status...
    [oracle@localhost grid]$ lsnrctl status
    
    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 08-OCT-2012 13:25:17
    
    Copyright (c) 1991, 2009, Oracle.  All rights reserved.
    
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    ------------------------
    Alias                     LISTENER
    Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
    Start Date                08-OCT-2012 11:29:47
    Uptime                    0 days 1 hr. 55 min. 29 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Log File         /u01/app/oracle/diag/tnslsnr/localhost/listener/alert/log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=1521)))
    Services Summary...
    Service "+ASM" has 1 instance(s).
      Instance "+ASM", status READY, has 1 handler(s) for this service...
    Service "secondarydb" has 1 instance(s).
      Instance "secondarydb", status BLOCKED, has 1 handler(s) for this service...
    The command completed successfully 

    Ecimen wrote:
    Hello again;

    do I need to add + entry ASM in listener.ora manuanlly?  example of ASM is not in place, this may cause problems later?

    No need to add the entry of ASM to the listener. You must have your ASM instance started, and it automatically registers with the listener.

  • problem with dbca

    Hello

    I installed 11.2.0.2 on 5.6.2 RHEL 64 bit - only the software initially. Now I use netca and dbca to create a database. I created a listener using netca. So I ran dbca to create the database as well as the business manager. However, it is said, that he cannot find a listener in the default location, so Employment may not be installed. What is the problem with the listener?

    Thanks in advance!

    user10962462 wrote:
    OK, the problem is back.

    Well, this is the error! I use the dbca GUI wizard and it's in German, but it is the translation:

    Database Configuration Assistent: WARNING
    The configuration of the database with the database control requires that a listener is installed in the default folder of oracle at the current address. You should start netca to configure a listener before you continue. You can also continue without the configuration of database control.

    Well, I want to install the EM. What should I do?

    (1) did you create sting DBCA database?
    (2) listener configured using NETCA? now listen is running? What is the status of the listener.

    If all fine then go ahead with OEM configuration.

  • Strange problem with the keyboard event listener

    I have a full screen touch app. To close the application, I set an event listener on keyboard for the key "0". I don't want the press user due to some restrictions Alt + F4 key combination. Problems begin when the application loses focus. Here's the code;

    protected function onComplete(event:FlexEvent):void
    {

    this.setFocus ();
    this.addEventListener (KeyboardEvent.KEY_DOWN, trapKeys, true, 0, true);

    }

    private void trapKeys(e:KeyboardEvent):void {}

    If (e.keyCode == 96) {}
    This.Close ();
    }

    Else if (e.keyCode == 48) {}
    This.Close ();
    }

    }

    When the user change the screen to a different with Alt + TAB application, or any other combination of keys flex app loses focus and does not work when he turns back to my app "0". How can I solve this problem?

    Thanks in advance.

    Hi, Ahmed.

    I have absolutely no problem with the solution you are trying to set up - you use mode full-screen interactive mode of keyboard?

    Please consider:

    on full add keyboard listener

    protected function applicationCompleteHandler(event:FlexEvent):void

    {

    this.stage.addEventListener (KeyboardEvent.KEY_DOWN, trapKeys);

    };

    //

    protected function applicationActivateHandler(event:AIREvent):void

    {

    If (this.stage)

    {

    switch the State to display full-screen when activated

    If (this.stage.displayState! = StageDisplayState.FULL_SCREEN_INTERACTIVE)

    {

    this.stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;

    };

    };

    };

    //

    private var exitHandled:Boolean = false;

    on NUMBER_0 | NUMPAD_0 exit-close

    protected function trapKeys(event:KeyboardEvent):void

    {

    If ((event.keyCode is Keyboard.NUMBER_0

    || event.keyCode is Keyboard.NUMPAD_0)

    (& this.exitHandled == false)

    {

    exitHandled = true;

    this.stage.removeEventListener (KeyboardEvent.KEY_DOWN, trapKeys);

    This.Close ();

    };

    }

    (Note: applicaton of the events 'applicatonComplete' and "applicationActivate" are routed to over managers)

    Kind regards

    Peter

Maybe you are looking for