anonymous wrote : 1) Is is possible to manipulate messages in a queue/topic? We want to be able to delete messages.
There are third-party tools, like HermesJMS, you can use. If all you want to do is delete certain messages using a message selector, then writing a trivial MBean to do so would be simple. anonymous wrote : | 3) The message payload may consist of multiple MB's (even GB's in a few cases) and we are concerned with the performance when messages are consumed. Any possibility to lazy-load when consuming messages? | I imagine almost all messaging servers require that a message reside in memory when processing it, so you have to take that into consideration when dealing with 1GB+ messages. You may want to stream the contents separately in a DB and then use small messages (pointers) to the actual contents. anonymous wrote : | 4) What happens if a consumer fails to consume a message. Is the message put in the back of the queue? If so how is this done? By reference or by copying the object? Of course, references to messages are used when processing them. They are only created once on the server, but are copied when sent to the client. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3884630#3884630 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3884630 ------------------------------------------------------- This SF.Net email is sponsored by the 'Do More With Dual!' webinar happening July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual core and dual graphics technology at this free one hour event hosted by HP, AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
