Hello!
 
My ejb-jar.xml and weblogic-ejb-jar.xml does not get populated at all.
 
It just says (in weblogic-ejb-jar.xml )
 
<!-- To add enterprise beans that you have deployment descriptor info for, add 
a file to your XDoclet merge directory called weblogic-enterprise-beans.xml 
that contains the <weblogic-enterprise-bean></weblogic-enterprise-bean> markup 
for those beans. --> 
 
And (in ejb-jar.xml) 
      <!-- Message Driven Beans -->     <!--       To add message driven beans 
that you have deployment descriptor info for, add       a file to your XDoclet 
merge directory called message-driven-beans.xml that contains       the 
<message-driven></message-driven> markup for those beans.     -->
 
My MDB looks like:
package org.javatx.mdb;

/**
* SimpleMdb
* 
* @ejb.bean 
* name="org.javatx.mdb.SimpleMdb" 
* type="MDB"
* destination-type="javax.jms.Queue" 
* transaction-type="Bean"
* 
* @weblogic.pool 
* initial-beans-in-free-pool="1" 
* max-beans-in-free-pool="1"
* 
* @weblogic.message-driven 
* connection-factory-jndi-name="jms/res/RESJMSConnectionFactory"
* destination-jndi-name="jms/res/RESUtJMSQueue"
* jms-polling-interval-seconds="10"
* 
* @ejb.env-entry
* name="BeanFactoryPath" 
* value="applicationContext.xml"
*/
public class SimpleMdb extends MessageDataDrivenBean {

protected String getName() {
return "simpleProcessor";
}

}
 
The example at http://xdoclet.sourceforge.net/xdoclet/using.html does not 
mention anything about merge.
 
So if any one got any idea please let me know.
Fredrik
_________________________________________________________________
Spara, redigera och organisera dina foton enkelt med Photo Gallery!
http://get.live.com/photogallery/overview
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
xdoclet-user mailing list
xdoclet-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to