Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.6, 0.8, 0.10
-
None
Description
JMS Connection.getMetaData returns a usable enumeration only on the first call to getMetaData.
Invoking getMetaData multiple times, either on the same connection or even completely different connections results in an empty Enumeration.
Steps to Reproduce:
1. Run a client with the following code
<code>
Connection conn = factory.createConnection();
for (Enumeration meta = conn.getMetaData().getJMSXPropertyNames();
meta.hasMoreElements()
{
System.out.println(meta.nextElement());
}
System.out.println("Getting connection meta data again");
for (Enumeration meta = conn.getMetaData().getJMSXPropertyNames();
meta.hasMoreElements()
{
System.out.println(meta.nextElement());
}
</code>
2. Observe that the second time around nothing is printed, since the enumeration is empty.
Actual results:
If conn.getMetaData().getJMSXPropertyNames() is called a second time on the same connection or in a different connection (from the same JVM) an empty enumeration is returned.
Expected results:
Every time getJMSXPropertyNames() is called, a enumeration with the property names should be returned.