Question :
Sometimes I get "Did not load correct number of messages, wanted:1 but got:0" (or similar), what's the reason for this ?
Answer :
You are probably using a non transactional database.
The most common culprit is using MySQL with the MyISAM data store - this is non transactional.
You need to use a transactional datastore with JBoss Messaging
Comments