client « jms « Java Enterprise Q&A





1. Using JMS, is there any way to store messages on intermittently disconnected clients and forward them to a broker when a network is available?    stackoverflow.com

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 ...

2. Does JBoss Messaging support non-Java clients?    stackoverflow.com

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 ...

3. Simple JMS Clients on OS X    stackoverflow.com

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 ...

4. Generic JMS Client    stackoverflow.com

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 ...

5. Message driven bean not responding until client method is complete    stackoverflow.com

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 ...

6. Anyone know exactly which JMS messages will be redelivered in CLIENT_ACKNOWLEDGE mode if the client crashes?    stackoverflow.com

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 ...

7. Can durable subscriptions survive client restart?    stackoverflow.com

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 ...

8. Setting MQ Header in java client    stackoverflow.com

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 ...

9. JMS client connecting to JBoss 6 AS exception    stackoverflow.com

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 ...





10. C++ JMS client or C++/C SOAP Client    stackoverflow.com

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 ...

11. TIBCO JMS with .Net client - problem with stuck messages in queues    stackoverflow.com

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 ...

12. Specifying Message Persistence for JMS client    stackoverflow.com

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 ...

13. Can a JMS subscriber client ID be migrated across hosts?    stackoverflow.com

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 ...

14. How to connect to WbLogic JMS queue using t3s via full client with two way SSL authentication?    stackoverflow.com

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 ...

15. JMS client over SSL    stackoverflow.com

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 ...

16. Are multiple client consumers possible in hornetq?    stackoverflow.com

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 = ...





17. Is there any way to configure jms transport for axis2 client programatically?    stackoverflow.com

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.

18. JMS Client Standalone Java Program    stackoverflow.com

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 ...

19. JMS / HornetQ = How to Create a JMS Queue programaticaly from the client?    stackoverflow.com

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 ...

20. JMS client behind a firewall    stackoverflow.com

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 ...

21. JMS Client Problem    stackoverflow.com

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 ...

22. Any chance Weblogic JMS client for .NET will support global transactions any time soon?    stackoverflow.com

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 ...

23. JMS non-MDB client    stackoverflow.com

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 ...

24. Get MQJMS2005 exception when connecting to IBM MQ using client mode    stackoverflow.com

when I use below codes to connect to IBM MQ using client mode, I got MQJMS2005 exception MQQueueConnectionFactory cf = ...

25. JMS client not able to receive messages after 3 days run    community.jboss.org

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 ...