Questions tagged [openjms]

OpenJMS is an open source implementation of Sun Microsystems's Java Message Service API 1.1 Specification

Features include:

  • Point-to-Point and publish-subscribe messaging models
  • Guaranteed delivery of messages
  • Synchronous and asynchronous message delivery
  • Persistence using JDBC
  • Local transactions
  • Message filtering using SQL92-like selectors
  • Authentication
  • Administration GUI
  • XML-based configuration files
  • In-memory and database garbage collection
  • Automatic client disconnection detection
  • Applet support
  • Integrates with Servlet containers such as Jakarta Tomcat
  • Support for TCP, RMI, HTTP and SSL protocol stacks
  • Support for large numbers of destinations and subscribers

http://openjms.sourceforge.net/index.html

25 questions
5
votes
2 answers

how to implement JMS on Android project

Currently, i'm working on android project. I have to join a jms server based on openJMS. i've not found any library, anyone know how to implement JMS client on Android ? thx.
jeremy.romano
  • 141
  • 2
  • 8
4
votes
1 answer

OpenJMS - Client port number

With regards to the problem Bart is having in NAT router blocking JMS messages I am trying to find the port number that clients receive openJMS messages on. After searching for ages on the web I can only find information about the server ports,…
user973758
  • 707
  • 1
  • 9
  • 22
3
votes
2 answers

JMS queue message receive order

I am adding two JMS messages in the same destination sequentially. Will both of these messages be received in the same order in which I have added them or is there a chance for reverse ordering, that is, which ever the message is received first in…
JavaUser
  • 25,542
  • 46
  • 113
  • 139
2
votes
0 answers

OpenJMS redelivers and delays messages

I have a consumer of a JMS queue. An exception may occur during the consumption, and I need to trigger the process again. I have two preliminary plans: Set acknowledge to javax.jms.Session.CLIENT_ACKNOWLEDGE. javax.jms.Message#acknowledge() is…
winston
  • 37
  • 6
2
votes
0 answers

OpenJMS: context creation fails with InvalideClassException

I am using OpenJMS with NetBeans 6.9.1. I have created a simple NetBeans Platform Application and a module inside it. I have started my openjms-0.7.7-beta using its startup.bat file. Now in the module the following code executes to start listening…
user758867
  • 121
  • 1
  • 5
2
votes
4 answers

JNDI Context :: Name jms not bound in this Context

I am trying to configure a JMS server (OpenJMS) into a Spring application and when I refer the resources using the notation "jms/<> I get a "name" not bound exception. Any clue what is missing? javax.naming.NameNotFoundException: Name jms is not…
lud0h
  • 2,370
  • 6
  • 33
  • 41
1
vote
1 answer

OpenJMS server does not want to start

I am currently trying to start OpenJMS server and I cant understand why this error occurs. I've tried running it on windows and linux but same error happens each time. Does anyone have an idea what may be wrong ? Exception in thread "main"…
1
vote
1 answer

How do I get OpenMQ to redeliver messages?

I listened to an OpenMQ queue asynchronously. If I have an exception in the process of consuming a message, is there a way to get OpenMQ to push that message to me again? @Bean public JmsListenerContainerFactory jmsQueueListenerContainerFactory() { …
winston
  • 37
  • 6
1
vote
1 answer

Add Queue to OpenJMS

at the moment I am playing around a little bit with openJMS. I already got the examples working, but in that cases I have to add / edit the queues and topics in the admin-page. Is it possible - and how - to add queues dynamically while openJMS is…
basti
  • 2,649
  • 3
  • 31
  • 46
1
vote
1 answer

Cant init context with JMS

i have problems with setting up JMS. I tried using Active MQ and OpenJMS but the same error occurs. Iam clueless on how to solve it: When i execute this: import javax.naming.Context; import javax.naming.InitialContext; import…
Loading
  • 1,098
  • 1
  • 12
  • 25
1
vote
1 answer

Trigger Monitor in JMS Provider like MQ Series

In Websphere MQ I can configure a Queue to Trigger an Application when a message arrives. In that way I can have an Application that starts only if needs and I don't have to manage one daemon that wait for message in that queue. More information…
Thomas8
  • 1,117
  • 1
  • 11
  • 22
1
vote
1 answer

NAT router blocking JMS messages

I have an openjms-0-7-7 instance running on my cloud machine. The connection to the jms topic happens over tcp. I run the client application on my personal computer at home and I am able to send messages to the topic (which then get forwarded…
user1096294
  • 829
  • 2
  • 10
  • 19
0
votes
1 answer

Put a message from PL/SQL to a JMS Queue running OpenJMS Server

I want to put a message out of PL/SQL directly into a running Queue, which runs on the OpenJMS Server. Is this possible? I've read the Oracle Advanced Queue section, but I don't really get it. Could you add some code samples or snippets? Thank you…
Florian Müller
  • 7,448
  • 25
  • 78
  • 120
0
votes
1 answer

Fail to startup openJMS version 0.7.7-beta

I have download the latest openJMS version(0.7.7-beta-1) and configure the JAVA_HOME AND OPENJMS_HOME as per instruction http://openjms.sourceforge.net/adminguide/install.html> ISSUE: Fail to startup openJMS server using startup.bat or openJMS run…
epall
  • 1
  • 1
0
votes
1 answer

Open JMS run basic example

I am trying to setup the OpenJMS on my machine and trying to run the basic example from command line. However, I am not able to figure out how to do it. This is what I have done so far, Run the Open JMS ➜ bin ./startup.sh Using OPENJMS_HOME:…
Gaurang Shah
  • 11,764
  • 9
  • 74
  • 137
1
2