glassfishrobot
glassfishrobot
The [javadocs for JMSContext#start](https://jms-spec.java.net/2.0/apidocs/javax/jms/JMSContext.html#start%28%29) could be improved by mentioning that it is not normally necessary for applications to call this method, since the the underlying connection used by the JMSContext...
Currently, the JMS API has no clear way of looking up a Queue or Topic. It's typically assumed to use JNDI, however when you're in Java SE there is no...
In the JMS 1.1 API, individual queues and topics are referred to not by name but by using javax.jms.Queue and javax.jms.Topic objects, where the javax.jms.Queue and javax.jms.Topic interfaces both extend...
This is a proposal to extend the JMS specification to define a standard way of instantiating and configuring connection factory objects. The proposal below is intended to be used by...
Since we have the option of creating a temporary queue/topic, it should also be possible to create a permanent queue/topic. The idea being that this queue/topic could survive for a...
The EJB 3.2 specification does not define a standard way to associate a JMS MDB (or any other type of MDB) with a resource adapter. Instead, if the application requires...
This issue was raised on the JMS forum: [https://forums.oracle.com/forums/thread.jspa?threadID=2124413](https://forums.oracle.com/forums/thread.jspa?threadID=2124413) and is being logged here on behalf of that contributor Poison messages are messages that are redelivered again and again when...
It is proposed that the JMS API be extended to allow messages to be delivered to a MessageListener in batches rather than individually as in JMS 1.1. Currently, messages are...
The resource definition annotation @JMSDestinationDefinition (and the corresponding deployment descriptor element) defines the attributes className, description, properties and resourceAdapter. [https://jms-spec.java.net/2.0/apidocs/javax/jms/JMSDestinationDefinition.html](https://jms-spec.java.net/2.0/apidocs/javax/jms/JMSDestinationDefinition.html) The resource definition annotation @JMSConnectionFactoryDefinition (and the corresponding deployment descriptor...
I came across a very interesting idea while discussing the declarative message listener feature ([https://java.net/jira/browse/JMS_SPEC-134](https://java.net/jira/browse/JMS_SPEC-134)) at NFJS that I think is worth sharing. We can actually think of standardizing some...