I am considering an architecture where I have clients that are intermittently connected to a network. I would like to store messages created on these clients in a JMS queue when ... |
For enterprise integration projects, a non-Java access to message brokers like JJBoss Messaging can be very helpful. For the Apache ActiveMQ and the GlassFish Open ... |
I haven't touched any J2EE stuff in years and I need to whip up a quick JMS client for a demo.
I'm using Eclipse, on OS X and I can't even ... |
Does anyone know if it is feasible to write a Generic JMS client - ie. one that works with JMS from different providers (eg. Sonic, IBM SIB, Jboss etc)?
Every time I've ... |
I have a MDB deployed on Jboss 4.2.2 and a client on the same server that produces messages and expects a reply from the MDB via a temporary queue created before ... |
The spec says "Acknowledging a consumed message automatically acknowledges the receipt of all messages that have been delivered by its session" - but what I need to know is what it ... |
If I use durable subscription, can I restart my client and resubscribe without loosing any messages? (Assuming, my client does not unsubscribe in any way. Lets say it just crashes).
Let me ... |
|
i am looking to set the MQ Header field 'PutApplName' in my java client and access the same in the JMSXAppID field as a JMS header. The documents on the net ... |
Right now I'm getting this exception from a simple JMS client I wrote to just test to see if I can connect to the JBoss JMS. Here is the snippet of ... |
I have an application in C++, but it'll need to 'talk' to Java based message-service. In the past we used WebSphere MQ and used their C++ libraries to do the 'talking'.
So ... |
We are using TIBCO JMS 4.3.3 with the same version of .Net TIBCO.EMS.dll for .net 2.0
We are having huge problems with stuck messages in queues. We are consuming messages from one ... |
I'm reading this section of Java EE tutorial.
http://download.oracle.com/javaee/6/tutorial/doc/bncfu.html#bncfy
And have a question: If I have a JMS client (not Server) that produces messages and sends them to a destination ... |
I have a task that has a durable subscriber on a JMS topic and I need to be able to move this task from one host to another.
The task has set ... |
I have struggled on this one for several days now. I am using WebLogic 11g (10.3.4.0) on Windows (Linux behaves the same). I have setup two way SSL authentication ... |
I'm writing a jms client against SSL service using Sonic client libraries. As far as i know all I need for it to work is specify System.setProperty("SSL_CA_CERTIFICATES_DIR", PATH_TO_CERT_FOLDER); where PATH_TO_CERT_FOLDER ... |
In my client application, I create several consumers, but they can't concurrently process the queue. Always, only a single consumer processes the queue messages. I don't know why.
Hashtable<String, String> env = ...
|
I know how to configure jms transport within axis2.xml, but i need to configure it with my specific application properties that could be changed in runtime.
|
I would like to use a standalone java program to poll and retrieve messages from JMS queue instead of having an MDB. Is it possible?
If it is, would it be possible ... |
I know that JMS Queues can be created in HornetQ via the hornetq-jmx.xml Configuration file. But I want to do this from the client?
I tried:
HornetQJMSClient.createQueue(queueName);
but this seems to not create ... |
I have following scenario:
Messages containing commands have to be send to a consumer / client which is connected to the internet using consumer Internet connections. So this means that the system ... |
When my JBoss server is down, my JMS client application repeatedly tries to reconnect to the JMS server. However, after a couple of failed attempts, it connects to any other available ... |
I'm developing a .net applications and going to use a message queue. I'm now evaluating Weblogic JMS (so that I can use existing infrastructure). As of 11.1.1.4 the official .net client ... |
I want to subscribe to the JMS queue with no usage of EJB MDB. The reason is that I want to receive messages only when I want, but not automatically.
Is there ... |
when I use below codes to connect to IBM MQ using client mode, I got MQJMS2005 exception
MQQueueConnectionFactory cf = ... |
I have a remote client which is connected to jboss JMS topic to receive messages. I have an JMS ExceptionListener listening to any excetion, and when exception occurs then it re-connects ... |