Rupen wrote:
> I am unable to generate MessageDrivenBean tags in ejb-jar.xml.

Unless I'm missing it elsewhere, you're only processing files ending in
"Bean.java", but your MDB is TestMDB.java. Adding the line after the
^^^'s should fix it.

      <ejbdoclet destdir = "${src.dir}" excludedtags =
"@version,@author" ejbspec="2.0">
         <fileset dir="${src.dir}">
            <include name="**/*Bean.java" />
                               ^^^^^^^^^
            <include name="**/*MDB.java" />
         </fileset>
         ...
      </ejbdoclet>

Good luck!

David Harkness
Sr. Software Engineer
Sony Pictures Digital Networks
(310) 482-4756


-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to