Well... this might be a PEBKAC error
If you change this method:
public void disposeSession(@Disposes @Any Session session) {
try {
session.close();
} catch (JMSException e) {
throw new RuntimeException(e);
}
}
to
public void disposeSession(@Disposes Session session) {
try {
session.close();
} catch (JMSException e) {
throw new RuntimeException(e);
}
}
the problem goes away, which seems strange
--
Sent from: http://tomee-openejb.979440.n4.nabble.com/TomEE-Dev-f982480.html
