hello. i'm trying to create my own message-driven bean (mdb), very similar to the one in the xdoclet examples, and deploy it to jboss2.4.1. however, after create the bean .java file and running it through the xdoclet ant task, when i looked at the jboss.xml file, it did not contain the value for "destination-jndi-name". here's the jboss.xml file:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 2.4//EN" "http://www.jboss.org/j2ee/dtd/jboss_2_4.dtd"> <jboss> <enterprise-beans> <message-driven> <ejb-name>HelloMdbQueueBean</ejb-name> <destination-jndi-name></destination-jndi-name> <configuration-name>Standard Message Driven Bean</configuration-name> </message-driven> </enterprise-beans> <resource-managers> </resource-managers> </jboss> the javadoc tag in the bean .java file was: /** * @ejb:bean name="HelloMdbQueueBean" * transaction-type="Bean" * acknowledge-mode="Auto-acknowledge" * destination-type="javax.jms.Queue" * subscription-durability="NonDurable" * @jboss:destination-jndi-name="queue/helloMdbQueue" */ i will try to dig through the xdoclet source to see if i can find out what's going on, but i'd appreciate it if anyone knows off the top of their head... thx. :) -------------- TERRORIST ATTACK ON AMERICA (tues, sept 11, 2001) Information and Disaster Relief Resources http://www.konrad.ws/special/20010911_terroristAttackOnAmerica/infoAndDisasterReliefResources.htm _______________________________________________ Xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
