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
0
votes
1 answer

OpenJMS : Failed to start database 'openjmsdb', see the next exception for details

Yesterday, I created a topic and a queue on my OpenJMS server, graphically (using admin.sh). I was able to start it with openjms/bin/admin.sh and then clicking on the menus "Start OpenJMS server>Start connections, etc." and even by executing only…
JarsOfJam-Scheduler
  • 2,809
  • 3
  • 31
  • 70
0
votes
1 answer

OpenJMS : impossible to set the INITIAL_CONTEXT_FACTORY

I wrote the below code to set my Context : Properties properties = new Properties(); properties.put(Context.PROVIDER_URL, "tcp://localhost:3035"); properties.put(Context.INITIAL_CONTEXT_FACTORY, "org.exolab.jms.jndi.InitialContextFactory"); Context…
JarsOfJam-Scheduler
  • 2,809
  • 3
  • 31
  • 70
0
votes
1 answer

Is there any way to create topics in Open JMS other than admin UI?

I am able to create topics in Open JMS using admin UI. Is there any Java API or REST API or shell command to do so?
Dev
  • 13,492
  • 19
  • 81
  • 174
0
votes
0 answers

Where are the messages in OpenJMS queue stored?

With reference to the title, I do know that the messages dropped into a queue are stored in a database and the default is Embedded Derby. I am trying to figure out if the messages dropped into a queue could be accessed directly using a DB tool such…
Srii
  • 543
  • 3
  • 7
  • 20
0
votes
2 answers

JMS queue logging/browsing for all messages (invisible consumer for queue) (OpenJMS)

do you have idea, if there would be some nice way to browse/log JMS queues? (I'm using OpenJMS) For topics I can just add one consumer more and that's about it but with queues I haven't finished with a solution yet. I would like to log all the…
Touko
  • 11,359
  • 16
  • 75
  • 105
0
votes
0 answers

How to browse lacs of messages from Websphere mq in minutes using JMS QueueBrowser

I am using the following code taking me 18 hrs browsing 1 lac (=100,000) message: I need it in minutes to complete, How can i make it fast complete browsing in 30 mins ? Integer count = (Integer) jmsTemplate.execute(new SessionCallback() { …
user3467346
  • 47
  • 10
0
votes
1 answer

When connecting to a JMS server, does the client have to be using the same API that the server is using?

For example, since our server is using TIBCO EMS, would I be able to connect to it using OpenJMS or WeblogicJMS?
Joseph
  • 41
  • 4
0
votes
1 answer

OPEN MQ - Help with asynchronous

I'm testing open MQ for send and receive messages in my project. I have no problem to configure it to send a synchronous message, but i can't find any way in the official documentation to configure the message to be consumed 15 minutes after the…
Cateno Viglio
  • 407
  • 11
  • 25
0
votes
1 answer

Run OpenJMS server as an embedded application

I have an application that needs to also be the JMS server (broker). So I would like to start within the same JVM the OpenJMS server. I have loosely read that this is possible, but I could not find any examples or explanation on the…
P_C
  • 185
  • 2
  • 11
0
votes
1 answer

calling JMS APIs using mysql

I have an application using MySQL 5.5 db in a windows machine and a JVM running on a linux machine. I want to send JMS messages to the JVM from mysql when a value is inserted in one of the tables. I have seen that we can configure openjms with mysql…
Patruni Srikanth
  • 741
  • 1
  • 7
  • 14
1
2