So I'm doing the following in some JMS code
Enumeration headers = message.getPropertyNames();
if (!headers.hasMoreElements()) {
return;
}
However an Enumeration that is empty. Is that expected?
I'm replaying messages from a Hermes Message store into an ActiveMQ
Queue but it doesn't look like they are getting any properties set.
timestamp on the message object does have a valid timestamp.
I'm using 5.3-SNAPSHOT but
I see this message earlier
http://osdir.com/ml/java.geronimo.user/2006-03/msg00051.html
|