MDB is not fired when message in Topic

Hi,
          Weblogic 7.0.2.0
          remote Weblogic 7.0.2.0
          I have a MDB that is listening to a remote topic.
          The deployment is ok, and when I monitor the MDB in the weblogic console
          the connection Alive is true, so is connecting and listening to the
          remote Topic.
          The problem I am having is that when the remote Topic receives a message
          the MDB's onMessage method is not called.
          I would appreciate any help on this.
          Publius
          

It is pretty likely there is some basic misconfiguration. As I wrote
          earlier, if there are no problems in the log file, please post
          your config.xml and MDB descriptor xml files and I (or someone)
          will take a look.
          Tom
          Ruowei Wu wrote:
          > The log file is fine until the message is published, which means the onMessage()
          > in MDB doesn't receive anything, but publish doesn't have any exception.
          >
          >
          > Tom Barnes <[email protected]> wrote:
          >
          >>The same advice applies. The first place to look is in your log files.
          >>
          >>Ruowei Wu wrote:
          >>
          >>>we have exactly same problem, message post is fine, but MDB doesn't
          >>
          >>receive anything,
          >>
          >>>looks like mdb container doesn't deliver.
          >>>
          >>>
          >>>Tom Barnes <[email protected]> wrote:
          >>>
          >>>
          >>>>Check for warnings and error messages in your log, as an MDB can
          >>>>still deploy successfully even if it fails to create its JMS connection.
          >>>>The MDB container will just keep retrying to connect.
          >>>>
          >>>>If this doesn't help, please post your MDB descriptor files and
          >>>>I'll take a look.
          >>>>
          >>>>Tom, BEA
          >>>>
          >>>>Publius Ismanescu wrote:
          >>>>
          >>>>
          >>>>>Hi,
          >>>>>
          >>>>>
          >>>>>Weblogic 7.0.2.0
          >>>>>remote Weblogic 7.0.2.0
          >>>>>
          >>>>>
          >>>>>I have a MDB that is listening to a remote topic.
          >>>>>The deployment is ok, and when I monitor the MDB in the weblogic console
          >>>>
          >>>>>the connection Alive is true, so is connecting and listening to the
          >>>>
          >>>>>remote Topic.
          >>>>>
          >>>>>The problem I am having is that when the remote Topic receives a message
          >>>>
          >>>>>the MDB's onMessage method is not called.
          >>>>>
          >>>>>I would appreciate any help on this.
          >>>>>
          >>>>>Publius
          >>>>>
          >>>>
          >
          

Similar Messages

  • Crystal Report Alerts not firing when no records are fetched from the DB

    Hello,
    The crystal report alert i have created in the report in the event of no records being fetched from the query is not firing.  The condition used is isnull ( count(DB Field ) ).
    Is there a limitation with alerts that they would be fired only when some records are fetched in the report.
    Appreciate any pointers
    -Jayakrishnan

    hi Jayakrishnan,
    as alerts require records to be returned here's what you will need to do:
    1) delete your current alert
    2) create a new formula with syntax like
                  isnull(DistinctCount ()) or DistinctCount () = 0
    3) create a new Subreport (which you will put in a report header)
    4) the subreport can be based off of any table
    5) have the subreport record selection always return only 1 record...for performance reasons
    6) change the subreport link to be based on the new formula
    7) the link will be a one way link in that you will not use the "Select data in subreport based on field" option
    8) now in the subreport, create the Alert based on the parameter created by the subreport link
    i have tested this and it works great.
    jamie

  • Safari 5.1 flash mouse_leave not fired when mouse button is down

    Hi all, anyone know a work around for the fact that Event.MOUSE_LEAVE is not fired in Safari 5.1 (OSX 10.6.8) if the mouse button is down? I tried the latest beta player and the issue is not resolved. Thanks!

    WOT alerts you to dangerous web sites.
    That function is already built into Safari, and has been since version 3:
    http://www.macworld.com/article/137094/2008/11/safari_safe_browsing.html
    I had never heard of the WOT extension until today!
    If you go to Safari Preferences/Security you will see a box marked 'Warn when visiting a fraudulent website'. That is what that is.
    The blacklists from Google’s Safe Browsing Initiative (where Safari checks for 'fraudulent websites') are contained in a database cache file called SafeBrowsing.db  - the file was created when you first launched Safari, and if you have the browser open, the file is modified approximately every 30 minutes.

  • Why is this table trigger not firing when insert/update from servlet?

    Hi!
    I have this servlet that parses XML and stores values into Oracle tables. I have created a table trigger so that when one table is updated, a trigger is fired and the current system date is store in another table's field.
    I have tested the trigger in Toad and it works, that is, if I update the table that the trigger is set to, the SYSDATE is stored as intended.
    Here is the trigger's code:
    DECLARE
    tmpVar NUMBER;
    NAME: transaction_time
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 9/14/2007 1. Created this trigger.
    NOTES:
    Automatically available Auto Replace Keywords:
    Object Name: transaction_time
    Sysdate: 9/14/2007
    Date and Time: 9/14/2007, 8:00:42 AM, and 9/14/2007 8:00:42 AM
    Username: (set in TOAD Options, Proc Templates)
    Table Name: MS_RESLIMITS (set in the "New PL/SQL Object" dialog)
    Trigger Options: (set in the "New PL/SQL Object" dialog)
    BEGIN
    tmpVar := 0;
    UPDATE MS_Misc SET mi_lastrun = SYSDATE;
    EXCEPTION
    WHEN OTHERS THEN
    -- Consider logging the error and then re-raise
    RAISE;
    END transaction_time;
    Now, when the table is updated by the servlet, the trigger does not fire. And here is the code from the servlet:
    --- <start of code> ---
    boolean recordExists =
    this.isRecordPresent("MS_ResLimits", "rl_compcode",
    compCode, url);
    Connection rlConn = null;
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    rlConn = DriverManager.getConnection(url, dbUser,
    dbPwd);
    Statement stmt = rlConn.createStatement();
    PreparedStatement xmlUpdate = null;
    if (recordExists) {
    xmlUpdate =
    rlConn.prepareStatement("UPDATE MS_ResLimits SET rl_compcode = ?, rl_maxreslimit= ? WHERE rl_compcode =?");
    xmlUpdate.setString(1, compCode);
    xmlUpdate.setString(2, maximumReservationDate);
    xmlUpdate.setString(3, compCode);
    } else {
    xmlUpdate =
    rlConn.prepareStatement("INSERT INTO MS_ResLimits VALUES(?,?)");
    xmlUpdate.setString(1, compCode);
    xmlUpdate.setString(2, maximumReservationDate);
    } //end-if-else
    int n = xmlUpdate.executeUpdate();
    rlConn.commit();
    } catch (Exception ex) {
    out.println(ex.toString() +
    "-> error inserting Max Reservation Date<br>");
    } finally {
    if (rlConn != null) {
    rlConn.close();
    } //end-try-catch-finally
    --- <end of code> ---
    What causes the trigger to fire? the commit? My understanding is that executeUpdates are in autocommit mode by default, or am I mistaken? Do I have to programmatically send something to the DB so that the trigger fires?
    BTW, I'm using JDeveloper 10.1.3.3.0. The project is being compiled with Java 1.5.0_06. The servlet is running in OCJ4 standalone. DB is 10g (don't know the release version).
    ...and, for some reason this message is not keeping format from my edit window to the post...
    Thx!
    Message was edited by:
    delphosbean
    Message was edited by:
    delphosbean
    Message was edited by:
    delphosbean

    You are supposed to be able to preserve you formatting using the <pre></pre> tags but I can't get this to work either<br>
    <br>
    Patrick.

  • MDB is not picking up messages in the Queue

    Hi ,
    I am trying to implement a MDB (Producer) , that acts as a Message Producer also . This MDB pickes up a message from a Queue and sends it to another Queue(Queue 2) after some processing. The MDB listening to the Queue 2 is not being able to pick this message.
    The Weblogic console shows that the message is pending.
    The transaction-type is Container and transaction-attribute is 'Required' for the Producer (MDB) ...
    I am creating a QueueSession as con.createQueueSession(true, Session.AUTO_ACKNOWLEDGE) . I also tried specifying queuesession.commit() ...
    even then the Message is not picked by the MDB listening on the other side...
    Please help me out

    any one

  • TS2755 iMessage sometimes not received, when messages in Mac is active and iphone is not

    Hi,
    Lately i didn't receive some messages only later to find them in my Mac's Messages application.
    What i understand from this, is that if my iPhone suffers from temporary disconnectivity then the iMessage is still routed to the Mac,
    but will never be pulled by the iphone .
    If that is the case then when i am in an elevator or out of power , then the iMessage center
    knows i have iMessage "on and active" and it will send it to my Mac and the iPhone will never be notified.
    Correct?
    Thanks
    Yair AKA Zvilich

    The iMessage and Facetime servers are down for the day. People have been having issues since this morning. I called Apple myself and they told me to just wait until this evening and try again but warned that could not be fixed until tomorrow.
    Wait until then and see what happens. You can always call Apple and get a direct update if you still have issues and think it should be fixed.
    Regards,

  • When validate item not firing when exit with mouse

    Hi
    I have a when validate item tirgger on an item.
    it fires fine when I use tab from keyboard after validating
    but when i navigate to another field with the mouse, the trigger does not fire.
    it only fires when i try to close the window..
    how can i overcome this?
    thanks

    Normally, a WVI trigger ALWAYS runs when you leave a field no matter how you leave it (after you have entered something, of course). If it is not running, then you should check whether you have messed around with Set_Form_Property and Validation_Unit.
    Or maybe you have some code in your key-next-item trigger that runs that makes you think it is the when-validate-item trigger.

  • Dynamic Actions not firing when using date picker?

    The dynamic actions don't seem to be triggering when selecting a date from the date picker, but trigger just fine when the dates are manually entered. Anyone else have this problem and if so is there a workaround to get it to work from the date picker as well? I am using Application Express 4.0.1.00.03
    And how can I report this problem?

    I'm already using Change.
    If it matters, I have it set to:
    Event: Select
    Selection Type: Item
    Condition: No Condition
    My action type is just an alert right now since all I want to do is to see if I can trigger it (as in you have to walk before you can run).
    Event Scope: Live
    Conditon type: Dynamic Action not Conditional
    Authorization Scheme: No Authorization Required

  • Air 3.4 iOS Push Notification is not fired when app is not running and is not in background

    Hello,
    I'm making an Air iOS application which uses the iOS Push Notification from Air 3.4.
    All is working perfectly except when I receive notifications when the app is not running and is not in background (The app is killed).
    I suppose the RemoteNotificationEvent.NOTIFICATION must be dispatched when I receive a notification even if my app is not currently running or in background ?
    Do you have already get the same issue ? Do you know what can prevent the notification to be handled ?
    Thanks,
    Loïc

    issue has been fixed in the build available at http://labs.adobe.com/downloads/air3-5.html.
    You would now have to attach listener to InvokeEvent. For cases, when application is killed, InvokeEventReason will be InvokeEventReason.NOTIFICATION. The notification payload can be accessed by the following code
    protected function onInvokeEvent(event:InvokeEvent):void
         trace("Invokehandler called .... \n");
         trace("reason: " + event.reason + "\n");
         if( event.reason == InvokeEventReason.NOTIFICATION)
                        var payload:Object = Object(event.arguments[0]);
              for (var i:String in payload)
                    trace("Key:value pair " + i + ":" + payload[i] + "\n");
              // TODO: DO THE NEEDFUL ON RECIEVING A NOTIFICATION HERE

  • ValueChangeListener not firing when iterator set to refresh=never

    I have an iterator that I have recently added a child node to. This child node is tied to a view object without a backing entity. The fields in that view can contain user supplied data that I persist through a stored procedure. This mechanism works great accept when the page is refreshed. When that happens the fields in the child node are lost due to the view being reexecuted.
    To fix this problem, I thought I could set the iterator to refresh=”never” and then programmatically refresh it when I need to. This solution appears to work but with one small problem, a valueChangeListener in one of the parent iterator fields fails to execute when it is supposed to.
    It is very weird. I can remove the refresh=”never” from the iterator and the valueChangeListener functions properly, but if I add it back, it fails to get called. I have compared the html source on the browser and the element is generated the same in both instances, so it is definitely some issue on the server side.
    Anyone ever run into a similar problem?
    <af:table rows="#{bindings.ItemCountrySystemsVO.rangeSize}"
              emptyText="#{bindings.ItemCountrySystemsVO.viewable ? \'No rows yet.\' : \'Access Denied.\'}"
              var="row"
              value="#{bindings.ItemCountrySystemsVO.treeModel}">
       <af:selectBooleanCheckbox  id="selectDesc"
                                  value="#{row.CheckBox}"
                                  autoSubmit="true"
                                  immediate="true"
                                  valueChangeListener="#{itemItemCountryDataActionBean.onChangeSystemDescCheckBox}" />
    <iterator id="ItemCountrySystemsVOIterator" RangeSize="10"
                  Binds="ItemCountrySystemsVO" DataControl="RMSItemAMDataControl" Refresh="never"/>
    <tree id="ItemCountrySystemsVO" IterBinding="ItemCountrySystemsVOIterator">
          <AttrNames>
            <Item Value="Item"/>
            <Item Value="CountryId"/>
            <Item Value="SystemCd"/>
            <Item Value="Status"/>
            <Item Value="StatusDate"/>
            <Item Value="PrimarySupp"/>
            <Item Value="CheckBox"/> 
          </AttrNames>
          <nodeDefinition DefName="od.adf.mp.datamodel.views.item.ItemCountrySystemsVO"
                          id="ItemCountrySystemsVONode">
            <AttrNames>
              <Item Value="Item"/>
              <Item Value="CountryId"/>
              <Item Value="SystemCd"/>
              <Item Value="Status"/>
              <Item Value="StatusDate"/>
              <Item Value="PrimarySupp"/>
              <Item Value="CheckBox"/> 
            </AttrNames>
            <Accessors>
              <Item Value="ItemCountrySystemsLangVO"/>
            </Accessors>
          </nodeDefinition>
          <nodeDefinition DefName="od.adf.mp.datamodel.views.item.ItemCountrySystemsLangVO"
                          id="ItemCountrySystemsLangVONode">
            <AttrNames>
              <Item Value="Item"/>
              <Item Value="System"/>
              <Item Value="Lang"/>
              <Item Value="LangDescription"/>
              <Item Value="CountryId"/>
              <Item Value="ItemDescription"/>
              <Item Value="OrigItemDescription"/>
            </AttrNames>
          </nodeDefinition>
        </tree>

    Using the refresh condition was definitely the better approach and it worked great. Unfortunately not refreshing the parent iterator did not prevent the reexecuting of the child node. I am at a loss on how to prevent this from happening. I am at a loss to explain why the reexecuting of the child view object happens at all when the parent hasn't changed.
    Any help is appreciated.

  • TS4002 When sending messages from iCloud on PC keeps telling me "message not sent" when message has been sent and keeps message as draft.  Help please.

    Everytime I send a message from iCloud on my desktop PC it states that message cannot be send at this time.  However when I look at sent folder, message has been sent.  Also message appears also under draft folder.  This only happens on dektop.  No issues on any of the iOS devices.  Please help.  Thanks

    Hello,
    any idea ?
    i give more detail:
    when i display the document, i don't find 'receptient list" tab,  i can't explain that
    Please help

  • Iphone 5 intermittent 'camera flash not firing when ON' issue - apple says they need to 'replicate' for repair!?

    i have been having this problem for a long time but i thought this was some ios bug. since i dont use the flash that much i noticed this problem only occasionally. but now i'm pretty sure this is some problem with the hardware....
    ...when kept on ON, the camera fires at will. especially if it detects a face, it wont fire. made a post about this long time back. have clean installed ios 7 since and also reseted settings several times. apple says wont do repairs until the issue is replicated in front of them! what do i do?
    Neerav

    If the repair shop was not apple certified repair shop then Apple will not replace/ or touch that device with a ten foot pole sadly. I'd follow Rudegar's advise and try anthoer repair shop as sadly it sounds like you got jipped by the original owner. Always verify your infomation through the company before you hand over the money!

  • DAQEvent=2 not fired when double buffered operations stop

    Hi,
    I am using Config_DAQ_Event_Message with DAQEvent==2 to get an event when synchronous DAQ and WFM are finished. This works fine with single buffered operation, but i get no event in double buffered mode ?
    Especially I like to get an event in case of Buffer-Underrun etc. errors.
    My hardware: PCI6111
    Software: NIDAQ6.9.3 with VisualC++
    Thanks in advance
    Michael

    Hi Michael,
    One of the possible causes of this error-10608 is a high update rate. The update rate might be high enough that you are not allowing enough time to fill the buffer with new data. This error can also be the result of having the regeneration option, within software, set to OFF. If you turn the regeneration option to ON, the error will go away. You can also reduce the update rate to see at which point you stop getting the error -10608
    I found the following links about errorcode -10843:
    http://digital.ni.com/public.nsf/websearch/EC38736BBF430DDC8625677C006F395C?OpenDocument
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RNAME=ViewQuestion&HOID=506500000008000000CA780000&ECategory=Measurement+Hardware.Digital+I%2FO
    regards
    TN

  • NavigateToURL not firing when site viewed on Mac

    I am simply trying to link a button on my site to another webpage (an online store).  The site is currently live at http://HigdonFlorist.com.  The last 2 menu options (View Bouquets and Place Order) should link to http://store.higdonflorist.com.
    On PC, this works just fine every time.
    However, I have reports that Mac users have trouble.  The action never fires on the first 4 or 5 tries.  Then, suddenly, it begins to work (and continues to work thereafter).
    I have scoured Google and Adobe Forums, and it seems this is not a common problem.  So I'm hoping it is just a simple fix.
    My AS3:
    import flash.net.URLRequest;
    import flash.net.navigateToURL;
    navigateToURL(new URLRequest("http://store.higdonflorist.com"), "_self");
    I have also tried this method:
    var url:String = "http://store.higdonflorist.com";
    var request:URLRequest = new URLRequest(url);
    try {
         navigateToURL(request, '_self');
    } catch (e:Error) {
         trace("Error occurred!");
    Thanks in advance....

    var url:URLRequest = new URLRequest("http://store.higdonflorist.com");
    navigateToURL(url, "_self");

  • Output--- automatic mail is not firing to sold to party.

    Dear Gurus,
        My client requirement is to sent mail to sold party when saving a sales order.
      For this I creted a new output type with following assignments
    In General data tab:acess sequence assigned and Access to conditions is checked
    In Default values tab: Dispatch time(send immadiately), transmission medium(External send), partner function(Sp
    ),Communication strategy(CS01) assigned.
    In Time tab: no information given
    In Storage system tab :Storage mode(print and archive),Document type(SDOORDER) info given.
    In Print tab: print parameters(sales org) assigned.
    In mail tab: nothing assigned.
    In sort order tab:nothing assigned
    In mail title and texts: En and DE languages are assigned.
    in processing routines: program and form routine is assgned.
    in partner functions: External send+ SP is maintained.
    and in condtion record maintained in VV11 tcode with details
    Partner function and in communication assigned printer and  selected check box print immadiately and release after out.
    But automatic mail is not firing when saving the sales order, but in change sales order in menu bar selected sales document and issue output to and selected print then mail is firing to the sold to party, pls tell me where i had done the mistake.
    Rgrads,
    kishore.
    Edited by: kishore gopala on Sep 13, 2008 1:42 PM

    Check whether you have maintained the email address in the customer master of Sold to party in the General Data>Address Tab> Under Communication Area??
    In the SCOT Transaction, check under SMTP (SMTP Mail Server)-->under INT (Internet) --> an  '*' asterisk has been maintained or not.
    Check the status of the email output in the Sales Order, is it showing with a green traffic light???
    If it is showing with a green traffic light you can manually see the status of the mail mesages in Transaction SOST.(by executing, by putting the Sender Id)
    If they have not gone you will be able to see them queued up there.
    Select the individual messages and press execute button. By doing this email outputs will be released.
    Hope this helps you.
    Caution: One word of caution is that SCOT is a very critical transaction. And if you are working on a live server, do not play with it as it controls the entire SAPconnect Administration Nodes.
    Hope this helps.
    Regards,
    Vivek

Maybe you are looking for

  • Applet does not function the same.

    When I run my applet in IBM Visual Age it works fine. When I run it in my browser it does not function the same. It has to save a file on to my hardrive but it doesn't work. Can someone help. Thank you

  • Table for Idoc messages

    Hi, Where I will get the bd87 idoc messages what the name of the table contain these messages. Thanks!!

  • 64gb iPhone 6 says it's full. It's not.

    Hi everyone! I've had no issues with my phone until this week. A prompt suddenly came up and said i was running out of space, so i checked and had 1gb remaining-while crazy since I always have 20gb free, I did just go on vacation and took pictures- s

  • My itunes or safari will not open after update

    How do I get my itunes and safari to open? After I updated yesterdayu and restarted my computer, it will not open.

  • ABAP General forum - 22 pages of posts in one day - wtf ?

    I don't have a project right now, so I was perusing the ABAP forum for whatever looked interesting. I noticed 22 pages of posts just today 11 Feb. With 15 posts per page that's 330 post/replies in one day! WTF is up with that, a little too crazy isn'