I am using Xdoclet 1.2.1 and encountered the following issue – the Weblogic tag “allow-remove-during-transaction” is unable to be generated into “weblogic-ejb-jar.xml”.
1. In the stateful session bean code, the tag I inserted is: @weblogic.allow-remove-during-transaction True
2. In the ant build script, the weblogic entry is: <weblogic version="7.0" destdir="${generated.meta-inf.dir}"/>
However, the “weblogic-ejb-jar.xml” does not contain this element under <stateful-session-descriptor>
<weblogic-enterprise-bean> <ejb-name>TestSFSB</ejb-name> <stateful-session-descriptor> <persistent-store-dir>MyPersistenceDir</persistent-store-dir> <stateful-session-clustering> <home-is-clusterable>True</home-is-clusterable> <home-load-algorithm>Random</home-load-algorithm> <replication-type>InMemory</replication-type> </stateful-session-clustering> </stateful-session-descriptor> …………………………..
</weblogic-enterprise-bean>
Any ideas?
Thanks in advance
|