Hi,
I have writte a MDB,
very simple, jsut for a test. The trouble is, XDoclet does not say a word about
it in ejb--jar.xml.
What am I doing
wrong?
Thanks for your
hints.
Klaus
-----------------------------------------------------------------------------------------------------------------
/**
* name="BooksClosing"
* destination-type="javax.jms.Queue"
*
*/
public
class BooksClosingMDB implements MessageDrivenBean, MessageListener {public BooksClosingMDB() {
super();
}
public void ejbRemove() throws EJBException {
}
public void setMessageDrivenContext(MessageDrivenContext arg0) throws EJBException {
}
public void
onMessage(Message arg0) {
System.out.println( "MessageDriven
Bean" );
}
}
