Messages don't dequeue

I manually queued row LCR's using the procedure described in chapter 16 in streams documentation pages 16-3 to 16-7. My messages are effectively queued but they are in WAITING state and i don't know why they are not dequeued automatically by the apply process.
Any ideas ?
Claudine

Even I seem to have a similar problem.
I am trying a sample OTN sample for OJMS/AQ.
My MDB (which is a SIMPLE CMT MDB, with AUTO_ACKNOWLEDGE) is receving notifications. No issues here.
But, All messages are REDELIVERED to my MDB instance (until the RETRY COUNT expires) .
And the DATABASE TABLE, AQ$RPTESTQTAB, shows the MSG_STATE as 'READY', even fter the onMessage() returns.
Why are MESSAGES not getting DEQUEUED from the QUEUE?
This is the SIMPLEST of all EXAMPLES, with CMT MDB, and the CODE FOR CREATION , STARTING the QUEUE was from OTN.
Please help urgently , as I need to justify my company's investment in JMS.

Similar Messages

  • I keep receiving emails on my ipad that don't display a message, don't enable me to delete them, and are dated 12/31/69.  What is up with this?

    I keep receiving emails (about 10 - 14) on my iPad that have no message, don't allow me to delete them in the same way as the other messages I want deleted are deleted, and are dated 12/31/69.  Does anyone have this problem?  How can I stop the messages?  I called Apple Support and they told me iCloud was having a problem.  Help!

    Hi Kappy,
    I've checked your account, and it looks like you have multiple subscriptions. You have two for ExportPDF (one renewing in February, and the other in April). You also have an Adobe PDF Pack subscription, which is the one that renews in March.
    Since you have Adobe PDF Pack, you don't need ExportPDF. Would you like me to cancel both of your ExportPDF subscriptions for you?
    Best,
    Sara

  • Messages don't work

    Messages don't work

    There is a one-response-per-day limit imposed by mailsieve and dovecot. Once a vacation response has been sent to any address, it'll throttle any future responses for 24 hours to the same address.
    Once you change the password, are you either using the same address to send e-mail as before? Have you tried triggering the vacation notice from a different sender address?
    A.

  • 6310i Nokia Inbox messages don't show sender numbe...

    6310i Nokia Inbox messages don't show sender number, even though there are saved on the phone.
    In the inbox, outbox, Archive folder. I can read the senders message but there number agaist the msg doesn't appear.
    I check to see if the numbers has not been entered twice on my mobile. stranger.
    I have backed uo and restored my phone recently using oxygen??
    pls help.

    I think oxygen may have stripped away the sender details.

  • Message don't show.

    Dear members:
    the message don't show what's the problem?
    if access_check('Biro') then
    call_form('form_name',jhjh,hjsjhas,jhjhjh);
    else
    message ("you don't have access");
    message ("you don't have access");
    end if;
    Thanks
    Muhammad Nadeem
    [email protected]

    message ("you don't have access");
    message ("you don't have access");change to
    message ('you don't have access');
    message (' ');
    NO_ACKNOWLEDGE
    Specifies that, when two consecutive messages are issued, the operator is not expected to respond to the first message displayed before Oracle Forms displays a second message
    Message was edited by:
    Rosario Vigilante

  • AQ Adapter don't dequeue massages

    I have a problem with AQ adapter, as in title it is not dequeuing the messages. It is working fine in development environment but deployed deployed in final environment stops working, there is no log entries on the OAS server, it looks like nothing happens at all, like all new messages would be dedicated to different user. But this is single user queue without subscribers so it should be working as the user is the owner of the queue and every other objects related (queue table , payload object, etc.)
    Any suggestions what maybe preventing it from working?
    Greetings
    Smok

    Chintan - I did not try any manipulations with log levels and so on as this is not our environment but I'll ask about that of course.
    Ronald - all messages are put into the queue by triggers, when insert or important update happens trigger is calling package procedures preparing message and putting it in the queue. All messages stay there forever as they don't have expiry time specified so I can see them in the queue_table. I can dequeue them too manually by firing proper statement so I think it is not a lack of permissions too.

  • Some of the messages aren't dequeued using JMS/AQ

    Hi.
    I am having strange problems dequeuing messages from an Oracle9i Release 2 database. I have a trigger that sends a message everytime a table is updated. When I have SQL worksheet and update the table through a SQL statement then I only recieve about 50-70% of the events. When I use Oracle Enterprise Manager Console I can see the rest of the messages are lying in the queue as 'READY'.
    I need this to be VERY reliable so if anyone have any ideas I would really appreciate it. I used PL/SQL in the DB because of the speed increase but maybe a Java Stored Procedure will work better? I have included the code in question below.
    Best regards
    Christer Nordvik
    JAVA code
    //get a DB connection to use with JMS
    dbconn = prevision.database.DBPool.getConnection();
    //try to estabilish a connection to the JMS server to recieve alarm updates
    tconn = AQjmsTopicConnectionFactory.createTopicConnection(dbconn);
    /* Create a Topic Session */
    tsess = (AQjmsSession)tconn.createTopicSession(true, Session.DUPS_OK_ACKNOWLEDGE);
    tconn.start();
    topic = ((AQjmsSession)tsess).getTopic("TS",strTopic) ;
    tsub1 = tsess.createDurableSubscriber(topic, "T");//unique id
    while (!done)
    //waits forever
    logger.debug("Waiting for alarms...");
    dtxtmsg = (TextMessage)(tsub1.receive());
    //found a message
    logger.debug("Recieved alarm " + dtxtmsg.getText());
    PL/SQL code
    AS
    BEGIN
    DECLARE
    Enqueue_options DBMS_AQ.enqueue_options_t;
    Message_properties DBMS_AQ.message_properties_t;
    Message_handle RAW(16);
    User_prop_array SYS.AQ$_JMS_USERPROPARRAY;
    Agent SYS.AQ$_AGENT;
    Header SYS.AQ$_JMS_HEADER;
    Message SYS.AQ$_JMS_TEXT_MESSAGE;
    Message_text VARCHAR2(100);
    gt1 number;
    BEGIN
    Message_properties.expiration := 3600; --Set the time to live for the message
    gt1:= DBMS_UTILITY.GET_TIME;
    Agent := SYS.AQ$_AGENT('',NULL,0);
    User_prop_array := SYS.AQ$_JMS_USERPROPARRAY();
    Header := SYS.AQ$_JMS_HEADER( Agent, '', 'aq1', '', '', '', User_prop_array);
    Message_text := 'Message 1 from PL/SQL';
    Message := SYS.AQ$_JMS_TEXT_MESSAGE(Header, LENGTH(Message_text), Message_text, NULL);
    --setting the id of the sender
    Message_properties.correlation := 'tst';
    --Message_properties.correlation := gt1;         
    DBMS_AQ.ENQUEUE(queue_name => 'ts.tstopic',
    Enqueue_options => enqueue_options,
    Message_properties => message_properties,
    Payload => message,

    I figured it out. Was something wrong with the trigger in the DB...

  • I am having multiple problems with my iphone 4s, people can't hear me when I call, text messages don't always send, calls go straight to voice mail. I have all bars, have hard rest 3 times. I have called apple 4 times and gone to a store. No help.

    I have had the 3g, 3gs, 4 and little if any problems. I made a major mistake buying the 4s. What a horrible phone. I must say, apple service is at best, BAD. Here are the basics. I am on the same network, I call the same people, I use the same text messages as I did with the 4. With the 4s, I will call someone and they will not be able to hear me. I have to hang up and recall. Or the phone just does nothing when I press call. Text messages acts like they send but when I go back the have been sent. Sometimes the calls go direct to voice mail.
    Here's what I have done. Reset, did not help. Called apple, advisor said she would call me back in 5 minutes, after waiting for 5 days for the call, I recalled, they walked me through the same things I had already done, then said to take it to a store. So they set up an appointment for the only day I could get to it, 1 1/2 hours away, on my grand son's birthday. That was okay if they fixed it. So they hard reset it, we had to setup 4 email accounts, they would not allow me to restore because they said it was a software problem. So I had to download all the apps, lost a lot of data. No fun. But if it worked! So Monday back at work, guess what, same thing. When home and did another hard reset. Still no lick. Called apple again. They said they would replace my phone, all they needed was to put a hold on a credit card for $899 or drive a 1 1/2 hours to a store.
    So anyone know a good andriod phone.
    PS I got a email asking about the service each time and each time I told them what a horrible phone it was and how bad service was. I have yet to hear back. I guess they do not read them!

    You're not speaking to Apple on in this forum, nor will someone from Apple see this post.   We are just users like you and I.
    Have you tried to restore or reset your phone?
    Or contact your carrier in re: to your sim card

  • Error message "don't show me this message again", I need it back!!!

    Stupidly I click "don't show me this message again" when itunes couldn't locate my music on an external hard drive. Apple help couldn't helped, so does anyone know how I can get this error message back so I can so itunes where to locate my music.

    It's application specific. You can re-enable the warnings in your preferences by clicking the Reset All Warning Dialogs button.
    Bob

  • Text messages don't always send; I get a red flag message. How can I make them re-send automatically?

    This drives me nuts: Occassionally, but not often, I will send a text message and it does not go through. This happens both when I am using iMessage or regular text messages. It gets me into a lot of trouble: I assume my text message has gone through, then check my phone half an hour later and realize the message has not been sent. I don't even get a vibration or a notice that it hasn't sent; it's only when I check my messages that I see the red flag but my undelivered message.
    How can I get the iPhone to just automatically keep trying to re-send these messages until it goes through, or at the very least to give me a notification buzz when the message doesn't go through so I know to manually re-send it myself?

    At this time that option does not exist. The only workaround that I can think of is to watch and make sure the text sends before closing the app.
    You may send feedback to Apple asking for a feature using this link www.apple.com/feedback/iphone.html

  • Messages don't reach XI from ABAP client proxy

    All messages in SAP System have "Recorded" status and don't  reach XI. Could you help me what is wrong?
    SXMB_ADM
    Role of Business System: Application System
    Corresponding Integ. Server: dest://MY_XI
    When I test MY_XI destination it returns 500 status:
    <SAP:ApplicationFaultMes
    sage namespace=""/><SAP:Stack>Empty HTTP query received. No message proc
    essing possible##</SAP:Stack></SAP:Error></detail></SOAP:Fault>#</SOAP:B
    ody>#</SOAP:Envelope>#

    hi,
    did you do ALL steps <b>EXACTLY AS</b> from the config guide?
    https://websmp205.sap-ag.de/~sapidb/011000358700001697502004E.PDF
    to connect your BS with XI ?
    point:
    8 Connecting Business Systems with an Integration Engine to the Central Integration
    BTW
    do you see any error in SXI_MONITOR
    on the R3 or only recorded?
    also:
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Regards,
    michal

  • 11gR2: Message state after dequeue in AQ$ queue_table view

    Dear all,
    we are in the process of migrating from 10gR2 to 11gR2 and encountered the following problem.
    We send messages over an advanced queue to 1 to n recipients.
    After dequeuing the message we query the AQ$<queue_table> view to determine if the specified message is processed by all recipients (msg_state should be 'PROCESSED' in my opinion).
    This worked fine in Oracle 10g (and 9i).
    In our 11gR2 (11.2.0.1) test system we encounter now the problem that the message still has the msg_state 'READY' in the AQ$<queue_table> view after dequeuing the message (we encounter that behaviour with one recipient).
    After a bit of trying we also found out that the view shows the (in my opinion correct) msg_state 'PROCESSED' after committing the transaction. But we query the view right after the dequeue in the same procedure, so I hope also the same transaction :).
    Please find following the enqueue and dequeue options we use:
    The enqueue options are the default ones, we make no changes:
    ENQ_OPT DBMS_AQ.ENQUEUE_OPTIONS_T;
    Here the dequeue options that we set:
    DEQ_OPT DBMS_AQ.DEQUEUE_OPTIONS_T;
    deq_opt.consumer_name := agent_name; -- This is correct, we definitely get the message
    deq_opt.dequeue_mode := dbms_aq.REMOVE;
    deq_opt.wait := 2;
    deq_opt.navigation := dbms_aq.FIRST_MESSAGE;
    deq_opt.correlation := p_order_id; -- This must also be correct as we get the correct message (It also happens if only one message is in the queue)
    This is how we determine the state of the message:
    SELECT count(*)
    INTO msg_count
    FROM aq$test_qt
    WHERE corr_id = p_order_id
    AND msg_state != 'PROCESSED';
    Maybe we overlooked some changes between 10g and 11g. We would be thankful for every hint.
    Thanks in advance
    Hansi

    Hi!
    Thanks for your tips.
    Yes, I reread the documentation for 11gR2 and I couldn't find a change that could lead to a change in this behaviour.
    It states regarding the visibility attribute of the dequeue options:
    "ON_COMMIT: The dequeue will be part of the current transaction. This setting is the default."
    I think we will now go on with installing patch set 11.2.0.2.
    Thanks again
    Hansi
    PS:: It's still me. Just logged in from a colleague's account. :)
    Edited by: user4819656 on 05.02.2011 00:39

  • Contacts added in Messages don't show up in Contacts/Address Book?

    Okay, here's what's happening:
    1) A friend messages me for the first time
    2) At the top of the message window I hit "Add contact"
    3) I type in the details
    4) Now, this new contact SHOULD show up in my Address Book/the Contacts app, right? But it doesn't!

    If found a thread on stackexchange dealing with several suggestions, none of which worked for me. The last message in the thread is diappointing as it basically says "don't use the add contact feature in the Message app". Unfortunately that is the answer I'll be going with since the feature is obviously broken.
    Here's the link to the thread: http://apple.stackexchange.com/questions/36131/some-contacts-not-showing-up-but- are-still-stored-in-iphone-4

  • Vacation Messages Don't Work After Changing Password

    I have a Snow Leopard Server (10.6.2) setup and the vacation message feature works fine as long as the user hasn't changed their password. Once they have changed their password then the feature doesn't work. You can set it up but it doesn't work, when you send an email to the user with the message set the email sends but you don't get the vacation message.
    I have also noticed that when you try and load the server side mail rules for a user that has changed their password you get an error (from memory it's something about can't get info from server).
    Does anyone know why this might happen.
    Thanks

    There is a one-response-per-day limit imposed by mailsieve and dovecot. Once a vacation response has been sent to any address, it'll throttle any future responses for 24 hours to the same address.
    Once you change the password, are you either using the same address to send e-mail as before? Have you tried triggering the vacation notice from a different sender address?
    A.

  • New IMAP messages don't show as "unread" in Lion

    I recall fixing this problem in Leopard, but I can't remember how I did it.
    I read my email on three devices (iMac, iPad 1, iPhone 3G). Since I upgraded the iMac to Lion, I've found that Mail frequently, but not always, retrieves new IMAP messages, but they don't appear as unread (i.e., no blue dot). Consequently, they're easy to miss, and the Dock icon badge doesn't show the new count, either.
    Suggestions?

    Mail Preferences > Viewing > Display unread messages with bold font.
    On the top of the same preferences page is the option to use classic layout i.e. SL.
    Mail Preferences  > General  > Make sure that Dock unread count is selected.
    S.

Maybe you are looking for

  • Agreement lookup failed as From trading partner cannot be identified

    Hi, I am working on custom document over HTTPS. I configured B2B to send custom document over Generic Exchange(transport - HTTPS). I enqueue the XML document with AQ header to IP_OUT_QUEUE. B2B is able to read the data from IP_OUT_QUEUE and invokes t

  • Creating optional elements using SQL / XML functions

    Hi, I am struggling with some SQL / XML functionality in order to create some optional elements in a XMLType. I have one table with data to be generated into an XML document. The table looks like this (only the attributes related to the problem are s

  • Will a MacBook Pro with Core 2 Duo / 2.4Ghz run Mavericks or Mt. Lion?

    Was wondering if this older MacBook would run the lastest OS. If so, will it be fast enough? Not planning on running any heavy-duty apps on it. Just email, web browsing, Pages, Numbers, maybe Photoshop Elements.

  • MacBook Pro and Dell AIO 948 Printer!

    Hi,     I have a new MacBook Pro and I am trying to connect it to my Dell AIO 948 printer. However, I know Mac and Dell are not compatible and I know I have to download some sort of compatible software, but I have no idea where to begin with that! An

  • Search matches no results

    Hi, select-options filed entries are converted into upper case automatically after any user enters some value and this causes to a problem becasue some entries are lower case in the db table. Therefore user search matches no results How can I solve t