glassfishrobot
glassfishrobot
(Originally submitted to Sun bug system, transferred to Oracle bug system, and finally here for resolution.) A DESCRIPTION OF THE PROBLEM : InternetHeaders created from stream do not initialize the...
Java Mail API doesn't provide a way to request "different DSN(Delivery Status Notification)s per-recipient" as explained by RFC1891. There is SMTPMessage.setNotifyOptions(int options) but it applies to all recipients in the...
Currently yo determine `JsonValue` type the code should look something like: ```java JsonValue value = ....; if (ValueType.OBJECT == value.getValueType()) { } if (ValueType.ARRAY == value.getValueType()) { } ``` What...
Hi, I'm evaluating Johnzon [1] as JSON-P implementation. My concern is that Johnzon's JsonWriter implementation closes the writer/stream after invocation of any of the write*() methods: [2]. The javadoc does...
[http://en.wikipedia.org/wiki/Advanced_Message_Queuing_Protocol](http://en.wikipedia.org/wiki/Advanced_Message_Queuing_Protocol) AMQP adds support for a number of the same things that JMS supports today, and adds to that model. I believe that by JMS 2.0 supporting the AMQP model...
Injection of JMSContext objects not possible in a WebSocket @OnMessage or @OnClose callback method
If you inject a JMSContext into a websocket ServerEndpoint you can use it in the @OnOpen callback, but if you attempt to use it from the @OnMessage or @OnClose callbacks...
JMS 2 made the JMSXDeliveryCount property required. However, dead letter queues remain non-standard although they are widely implemented and used. As a result, JMS application portability is needlessly limited and...
There are several methods that return raw java.util.Enumeration. Adding a type parameter would return the potential for misuse, produce cleaner and safer code and give a better development experience since...
#### Summary In version 1.0b of the JMS specification, applications had to use a completely separate set of interfaces when working with queues as they did when working with topics....
Not all JMS applications depend on the message ordering guarantees required by JMS 1.1\. Some would work perfectly well if the existing guarantees were occasionally broken. The need to satisfy...