I am reviewing a client-server application written in Java. The server receives JMS m开发者_开发知识库essages and processes them but the messages can come in an unexpected order, and a cancel can arri
Does it make sense to use JMS and JavaMail together to build a scalable email solution? Presently these are the 2 options I am considering:
The project is required to receive lot of data(the possible historical weather data of one State) from different datasources, like zip files, data files within a website. The data format is not clear,
I am trying to write a test utility to list out the various items within the SonicMQ environments I connect to.I have been able to list out a number of items, including brokers, containers, and queues
if I use the DefaultMessageListenerContainer of Spring to recieve JMS messages, I don\'t get JMS messages redelivered, even if I set sessionAcknowledgeMode to 2.
When there is a network problem which results in the client being disconnected from the JMS server, is there some other way to detect the problem othe开发者_StackOverflow社区r than waiting until the n
I have a local ActiveMQ broker which is on an unreliable internet connection, and also a remote ActiveMQ broker in a reliable datacenter.I have already sorted out a \"store and forward\" setup so that
We have a number of systems that produce PDFs that need to be printed.These are stored on a central document store.A message then goes onto a JMS queue that the document needs printing.A service, writ
I am working on a Java EE 6 Enterprise Application that runs on my local Glassfish3 installation. One of my EJBs needs to send messages to a remote JMS Broker which is located somewhere on the Interne
I am writing a Java code that sends messages to a JMS queue. I am doing this by using \"QueueSender.send()\".