All messages recieved by topic

Is it possible to loop through all messages received by a topic?

no. there is no browser mechanism for topics and messages are typically accessed per consumer not for the topic as a whole.
_sjz.                                                                                                                                                                                                                                                                           

Similar Messages

  • Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet." Help!?

    Upon upgrading iPhoto, iPhoto Help no longer works.  It gives the error message:  "The selected topic is currently unavailable. To see all iPhoto Help, you must be connected to the Internet."   I am obviously connected to the internet since you are reading this.
    I tried upgrading permissions but it did not help!?  Can anyone tell me what is wrong?  Thanks

    Try
    Reboot the computer, see if that fixes it.
    Then try:
    Backup your files off the computer (not TimeMachine) and disconnect
    Hold c boot off the 10.6 disk and simply reinstalling OS X
    Log in and update to 10.6.8
    c boot off the 10.6 disk again and use Disk Utility >Repair Disk
    reboot and all should be fine, except some third party programs that install kext files, those will have to be reinstalled from fresh sources.

  • How to retreive all unconsumed messages from a topic with a MDB?

    Hello!
    I have a webapp that stores TextMessages in a Topic in WebLogic.
    I have an ejbapp (Message driven bean) that reads messages from the topic.
    If both are up and running the ejbapp reads all messages sent from the webapp to the topic.
    But if I stop the ejbapp for a while and sends a couple of messages to the topic and then deploy the ejbapp again, then the ejbapp does not read the unconsumed messages. If I send a new message to the topic the ejbapp reads that new messages but it does not get the previous messages that are on the topic.
    Is this the way it should work? Or could I get the message driven bean to consume all the messages that it has not consumed from the topic when it starts?
    My weblogic-ejb-jar.xml looks like:
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB//EN' 'http://www.bea.com/servers/wls810/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>OrderManagerMDB</ejb-name>
    <message-driven-descriptor>
    <pool>
    <max-beans-in-free-pool>200</max-beans-in-free-pool>
    <initial-beans-in-free-pool>20</initial-beans-in-free-pool>
    </pool>
    <destination-jndi-name>jms/OrdersTopic</destination-jndi-name>
    <connection-factory-jndi-name>jms/OrdersConnectionFactory</connection-factory-jndi-name>
    </message-driven-descriptor>
    <enable-call-by-reference>True</enable-call-by-reference>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>And my ejb-jar.xml looks like:
    <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'>
    <ejb-jar>
    <enterprise-beans>
    <message-driven>
    <ejb-name>OrderManagerMDB</ejb-name>
    <ejb-class>brownbagwarehouse.OrderManagerMDB</ejb-class>
    <transaction-type>Container</transaction-type>
    <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
    <message-driven-destination>
    <destination-type>javax.jms.Topic</destination-type>
    </message-driven-destination>
    </message-driven>
    </enterprise-beans>
    </ejb-jar>My MDB onMessage looks like:
    public void onMessage(Message message)
    try
    TextMessage textMessage = (TextMessage)message;
    System.out.println(textMessage.getText());
    catch(Exception e)
    e.printStackTrace();
    }Best regards
    Fredrik

    I am not much familiar with Weblogic, but i would suggest, you do a search for how to setup "Durable Subscriptions" in Weblogic. This will ensure the the messages that were sent when the consumer was not available, will be delivered once the consumer is available

  • Not able to Read All the Message in the Topic

    Hi Al,
    i am new to JMS. I have implemented publish-subscribe model. Topic as a destination.
    I want to read all the message available for particular topic. is there any way to get this?..
    like in the Queue, QueueBorrower used to read all available messages in the queue.
    Thanks
    Raj

    It depends on what you mean by "what messages are available on the topic".
    if you want to know what messages would be delivered to a new consumer on the topic, then you can simply create a consumer yourself. Each messages on a topic is delivered to all subscribers, so by creating a consumer yourself you won't be interfering with the delivery of messages to other consumers. (That's not possible with queues which is why the queue browser is provided).
    If you want to know what messages are "persisted in the topic" then there's not really such a concept. Messages sent to a topic are only persisted in individual durable subscriptions created for individual clients. If there are no durable subscriptions when messages are not persisted. The JMS APi doesn't provide a way to browse the messages saved in an individual durable subscription. It could, but it doesn't.
    Nigel

  • How to retrive all unread messages from a topic?

    Hello!
              I have a webapp that stores TextMessages in a Topic in WebLogic.
              I have an ejbapp (Message driven bean) that reads messages from the topic.
              If both are up and running the ejbapp reads all messages sent from the webapp to the topic.
              But if I stop the ejbapp for a while and sends a couple of messages to the topic and then deploy the ejbapp again, then the ejbapp does not read the unconsumed messages. If I send a new message to the topic the ejbapp reads that new messages but it does not get the previous messages that are on the topic.
              Is this the way it should work? Or could I get the message driven bean to consume all the messages that it has not consumed from the topic when it starts?
              My weblogic-ejb-jar.xml looks like:
              <pre><!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB//EN' 'http://www.bea.com/servers/wls810/dtd/weblogic-ejb-jar.dtd'>
              <weblogic-ejb-jar>
              <weblogic-enterprise-bean>
              <ejb-name>OrderManagerMDB</ejb-name>
              <message-driven-descriptor>
              <pool>
              <max-beans-in-free-pool>200</max-beans-in-free-pool>
              <initial-beans-in-free-pool>20</initial-beans-in-free-pool>
              </pool>
              <destination-jndi-name>jms/OrdersTopic</destination-jndi-name>
              <connection-factory-jndi-name>jms/OrdersConnectionFactory</connection-factory-jndi-name>
              </message-driven-descriptor>
              <enable-call-by-reference>True</enable-call-by-reference>
              </weblogic-enterprise-bean>
              </weblogic-ejb-jar></pre>
              And my ejb-jar.xml looks like:
              <pre><!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'>
              <ejb-jar>
              <enterprise-beans>
              <message-driven>
              <ejb-name>OrderManagerMDB</ejb-name>
              <ejb-class>brownbagwarehouse.OrderManagerMDB</ejb-class>
              <transaction-type>Container</transaction-type>
              <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
              <message-driven-destination>
              <destination-type>javax.jms.Topic</destination-type>
              </message-driven-destination>
              </message-driven>
              </enterprise-beans>
              </ejb-jar></pre>
              My MDB onMessage looks like:
              <pre>public void onMessage(Message message)
                   try
                        TextMessage textMessage = (TextMessage)message;
                        System.out.println(textMessage.getText());
                   catch(Exception e)
                        e.printStackTrace();
              </pre>
              Best regards
              Fredrik

    For subscriptions to continue to exist even while no subscriber is attached they need to be "durable". See the EJB programmer's guide, and search for "durable" in the MDB doc.
              In JMS terminology these are termed "durable subscriptions".
              Tom

  • Receiving all messages including old ones from a JMS Topic

    Hi all,
    is there a way for a subscriber to receive all messages available in a Topic including the "old" ones?
    By the "old" messages I mean messages written in the Topic before the subscriber really subscribes or messages created oven before the subcrieber exist.
    What is the best solution for this? Are there any?
    Many thanks,
    Nelson.

    Hi Nelson,
    Any mechanism for reprocessing messages is up to your JMS provider. If I may plug DropboxMQ, it has a simple but effective mechanism to do exactly as you wish. With DropboxMQ every messages is a file. Redelivery is as simple as moving messages from one directory to another. Here is the link:
    [http://dropboxmq.sourceforge.net]
    Cheers,
    Dwayne

  • When i restart the weblogic server 9.2,all messages in Topic get cleared

    Hi,
              When i restart the weblogic server 9.2,all messages in Topic get cleared for inactive dudrable subscribers.
              Please advise what the issue here.
              Thanks.

    Hi Tom, Thanks you so much for spending your time on this issue.
              A)I didn't specify any persistent mode.so i believe default mode is "Persistent"
              B) when i click on durable subscribers link on the corrersponding Topic it is showing 2 users.
              actually these durable subscribers are created by executing below code after look up the Topic.
              TopicSubscriber tsub = ts.createDurableSubscriber(topic,"mysub");
              C) Delivery Mode Override is set to "No-Delivery".
              but Time-to-Live Override is set to 21600000 .
              i assume Time-to-Live is causing problem.
              Please advise.
              Thanks.
              Edited by rodex at 03/25/2008 3:55 PM

  • New xperia z1- not recieving all messages?

    Hi guys
    I upgraded from an iPhone 4s to the Xperia z1 on Saturday and am so far loving it. However, I'm not recieving all text messages from people. In order to fix this i tried putting my sim back into my old iPhone, turning off iMessage, leaving the phone for about half an hour then putting the sim back in my Sony. However I'm still not getting all messages. Any ideas...?

    Check this thread
    http://talk.sonymobile.com/t5/Xperia-Z1/I-ve-just-changed-from-an-I-phone-to-Xperia-z1-cannot-receiv...
    or this
    http://talk.sonymobile.com/t5/Xperia-Z1/Changed-phone-from-an-Iphone-to-and-Xperia-Z1-and-can-t-rece...
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • How to remove a message from a Topic before it's consumed?

    Hi All,
              I'm using Weblogic JMS Extensions to publish messages to a topic so
              that consumers do not receive them for at least 1 hour after
              publishing. My problem is that I need to be able to delete selected
              messages from the topic sometimes before the consumers see it. I've
              looked everywhere but can't see a simple way of achieving this. Have I
              missed the obvious? (I hope I have!).
              Many thanks in advance.
              

    Essentially, the messages do not exist until that hour. There is
              currently no way to consume them.
              _sjz.
              "jim" <[email protected]> wrote in message
              news:[email protected]..
              > Hi All,
              >
              > I'm using Weblogic JMS Extensions to publish messages to a topic so
              > that consumers do not receive them for at least 1 hour after
              > publishing. My problem is that I need to be able to delete selected
              > messages from the topic sometimes before the consumers see it. I've
              > looked everywhere but can't see a simple way of achieving this. Have I
              > missed the obvious? (I hope I have!).
              >
              > Many thanks in advance.
              

  • No message recieved, error key : RFC_ERROR_SYSTEM_FAILURE

    Hi All,
    A user is trying to approve a Journal (a particular company code) in My Work tab to SAP Workflow to Workflow Inbox. But he is not able to approve and he is getting an error:no message recieved, error key : RFC_ERROR_SYSTEM_FAILURE. However he is able to approve other comapny codes Journals.
    Thanks and Regards,
    Honey

    Hi Honey,
    This error says that there is a problem with the system you are trying to connect. Try using the transaction ST22 to look at the dump generated in the system to have a better idea of the error. Also give a look at the file dev_jrfc.trc which you can find in the server location of j2ee/cluster/server.
    Hope it helps.
    Regards,
    Gourav.

  • How do I keep copies of all messages?

    Thius may be an easy one, but I can't figure it out. I have three email accounts: 2 IMAP email accounts and a .Mac account. Since the first two are IMAP, when I delete it on my computer, it gets deleted on the server. If I don't delete them, I very quickly reach my 100 Mb limit (in a few days.) I also like to keep my inbox clean, only active issues.
    I could manually save all messages, but that is a chore.
    Ideas as to how I could set up a mailbox that keeps a copy of EVERY message (in, out, deleted) on my computer, while allowing me to delete from the servers?
    Thanks,
    Peter
    Dual 2 GHz POwerPC G5   Mac OS X (10.4.8)   4.5 GB DDR SDRAM
    Dula 2 GHz POwerPC G5   Mac OS X (10.4.7)   4.5 GB DDR SDRAM
    Dula 2 GHz POwerPC G5   Mac OS X (10.4.7)   4.5 GB DDR SDRAM

    Open Mail Preferences, select Accounts from the toolbar, select an account. Click on Mailbox Behaviors tab. Last item, Trash: uncheck the box labeled "Store deleted messages on server." This will stop Mail from storing deleted mail on the server. All deleted mail will now be stored locally. Do this for each of your mail accounts, then clear out the deleted mailbox on the server to recover space.
    You will note that you can do the same for Drafts, Sent, and Junk mailboxes if you prefer to save them locally rather than on the server.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Forum question: How to set Show All Messages as default?

    I seem to remember there was a way to set this as a default, so that when one clicks on a topic, all new (unread) posts are shown. Currently, I only see a subset of the new postings, and I have to click on "Show All Messages" to see them all. The number shown initially seems to be arbitrary. I know that postings that I've read will not show up, but how can I get all unread postings to show by default?
    Thanks!
    Rafael

    R,
    For non-Photoshop/general forum questions, please post your concerns at: http://www.adobeforums.com/cgi-bin/webx?14@@.ee6b30e
    Thanks.
    Neil

  • E72 Deleted all messages and now backup wont resto...

    Hello there - I am in such a mood and want my problem resolved so much that I will pay anyone that helps
    Basically on E72, I had messages in inbox, my folders and sent section. Once I restarted phone and then phone froze. I felt the problem was due to Vlingo application, because I pressed home button to see which applications were open that were casuing the freezing. So I restarted the phone and all messages were deleted. However my messages were saved as a backup on another memory card. So I only lost a couple of texts. But the same, exactly same problem happened yesterday. Now all texts on both memory cards have been deleted. I have now disabled vlingo to open on start up.
    1. The only backup I have now is a pc suite backup of texts, as an .nbu file which I can restore using pc suite or ovi suite. However after I restore, the messaging application does not open and I have to restart phone. Also the texts inside "my folder" do not appear, only in my inbox and sent. Is there any way, of getting all the texts to appear including my folder texts? I really need the texts in MY FOLDER from the backup.
    2. Obviously the above solution doesnt give me all my texts back, so is there any chance of restoring the texts, from the memory cards even though it doesnt work when I insert it inside the E72. Im hoping by restoring old data inside the memory card by opening it on the laptop or something?
    3. I heard, that texts do not get deleted at all, but just blocked, so anyone know if I can unblock them?
    4. Or can my network provider send me texts, that I have recieved and sent over last couple of months.
    Please anything that will help, from anyone thats experienced and can solve my problem or from a Nokia technician, anyone???

    Hope others can help you out with ideas but you could try to recover deleted files from the memory cards using PC software. The best freeware I would try is called Recuva and can be downloaded from here http://www.piriform.com/recuva.
    You can run it safely and it won't change anything on the card even if it can't recover anything - just run it and see what it finds. It provides a report of what it finds including how intact any deleted files are and the chances of a full or partial recovery.
    It would be more succesful if you can plug the cards into a usb card reader.
    I've never tried it with phone memory cards but I have with camera micro sd cards with some success so its worth a try
    E71-1(241.04) RM-346 300.21.012

  • E72 Deleted all messages and now OviSuite backup w...

    Hello there - I am in such a mood and want my problem resolved so much that I will pay anyone that helps
    Basically on E72, I had messages in inbox, my folders and sent section. Once I restarted phone and then phone froze. I felt the problem was due to Vlingo application, because I pressed home button to see which applications were open that were casuing the freezing. So I restarted the phone and all messages were deleted. However my messages were saved as a backup on another memory card. So I only lost a couple of texts. But the same, exactly same problem happened yesterday. Now all texts on both memory cards have been deleted. I have now disabled vlingo to open on start up.
    1. The only backup I have now is a pc suite backup of texts, as an .nbu file which I can restore using pc suite or ovi suite. However after I restore, the messaging application does not open and I have to restart phone. Also the texts inside "my folder" do not appear, only in my inbox and sent. Is there any way, of getting all the texts to appear including my folder texts? I really need the texts in MY FOLDER from the backup.
    2. Obviously the above solution doesnt give me all my texts back, so is there any chance of restoring the texts, from the memory cards even though it doesnt work when I insert it inside the E72. Im hoping by restoring old data inside the memory card by opening it on the laptop or something?
    3. I heard, that texts do not get deleted at all, but just blocked, so anyone know if I can unblock them?
    4. Or can my network provider send me texts, that I have recieved and sent over last couple of months.
    Please anything that will help, from anyone thats experienced and can solve my problem or from a Nokia technician, anyone???
    Solved!
    Go to Solution.

    Oh right, like I said I saved on mass memory.
    Which software do you use to back up - pc suite or ovi suite?
    I used pc suite ONLY to backup, hence maybe why it didnt save messages in myfolder? I have 3 other old backups, but even they do not have myfolder messages, only inbox and sent.
    The backups are a month old anyway..both the memory cards had new updated texts - anyway I can retrieve them? I still insert them every now and again, hoping they appear, but they dont.
    Ive tried using Recuva software, but I dont know which format txts are saved in memory cards, like is it excel etc? So i dont know which files to recover, ive tried recovering everyfile, but then it says material is copy protected or something similar.
    Youve been great help so far, regarding NBUexplorer. thank you very much. If you or anyone could help me with recovering memory card texts, then it would help, seeing as the backups are of no use now.
    I still dont know why, on two occasions my e72 froze and after restarting it, all texts were deleted. Like I said, I saw vlingo start on both occasions, so Im blaming it on that

  • Message Bridge - from Topic to Queue

    Hi all,
              Can I set up a message bridge in Weblogic 8.1 sp3 to "redirect" message from a topic to a queue? i.e. The source is set to Topic while the target is to queue consumed by a MDB located in the same instance as the queue.
              I tried to configure but I couldn't get any subscriber to subscribe the said topic. Would it be a configuration problem or would the proposed bridge work?
              Thanks,
              Vincent

    Sure, there's no reason why the bridge can't go from a topic to a queue, or from a queue to a topic. I don't know what specific problem you were having, but you can do this.

Maybe you are looking for

  • Error creating Crystal Report using Stored Proc Universe

    Hi, I have created a stored procedure Universe, using the new feature available in XI R3. This connects to an Oracle database, executing a PL/SQL procedure returning ref cursor. I have created a WebI report using this Universe, which works fine and f

  • How to change the Group Sort Order

    I'm using Crystal XI version to create a report that has two "Group By" fields. I understand the sequence (Group 1, Group 2) in which the fields are sorted, however I was wondering whether there is a way to sort by ONLY the Group 2 field. If this is

  • Use of non-migratable database link not allowed ERROR

    Hello, We have a notification process (on disabled user) in OIM that needs to connect to a schema in another instance to check some information before the notification is sent out. We have OIM in an instance A and the other schema lives in the instan

  • Display an extra column in the standrad report using LDB

    my requirement is like this 1) to add one more parameter  region in the selection screen of  VI98 2) Display the region column in the output in the 3rd position is there any way to add one more parameter in the selection screen of transaction VI98 an

  • Question on Verbose GC output - JVM 1.5 on Solaris

    Hi, I noticed quite a few instances of the following lines in verbose gc file before the garbage collection. The output snippet is pasted below. Application time: 4.1012270 seconds Total time for which application threads were stopped: 0.0005752 seco