Hi, I'm having a problem with generating localinterface and localhomeinterface files using xdoclet. I'm sure this is a simple issue but am unable to find the cause. The remote interface is being generated though. Thanks for any help.

The following is the tags i used in the Bean file

/**
* Demonstration stateless session bean.
* @ejb:bean name="Hello"
*           display-name="Hello Bean"
*           type="Stateless"
*           transaction-type="Container"
*           jndi-name="HelloHome"
*           local-jndi-name="HelloHome"
*/
public class HelloBean implements javax.ejb.SessionBean
{
...
}

The following is the ejbdoclet task in my build file.
        <ejbdoclet
                sourcepath="${src.ejb.dir}"
                destdir="${build.generate.dir}"
                classpathref="base.path"
                excludedtags="@version,@author"
                ejbspec="${ejb.version}"
                mergedir="${src.resources.dir}/xdoclet"
                force="${xdoclet.force}"
          >

                <fileset dir="${src.ejb.dir}">
                        <include name="**/*Bean.java"/>
                </fileset>

                <remoteinterface/>
                <homeinterface/>
                <localinterface/>
                <localhomeinterface/>
                <deploymentdescriptor destdir="${build.dir}/META-INF"/>

                <jboss version="${jboss.version}"
                        xmlencoding="UTF-8"
                        typemapping="${type.mapping}"
                        datasource="${datasource.name}"
                        destdir="${build.dir}/META-INF"
                        validateXml="false"
                />
           </ejbdoclet>


Sunil


_________________________________________________________________
The new MSN 8: smart spam protection and 2 months FREE* http://join.msn.com/?page=features/junkmail




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to