My pleasure. Here is the target which builds the "generated source" ... i.e., 
the remote, remotehome, local, and localhome interfaces. 

    <target name="gensource">
        <delete dir="${gensrc}" />
        <mkdir dir="${gensrc}" />
        <tstamp>
            <format property="TODAY" pattern="yyyy-MM-dd" />
        </tstamp>
        
        <ejbdoclet
            destdir="${gensrc}"
            addedtags="@xdoclet-generated at ${TODAY}"
            ejbspec="2.0" >
        
            <fileset dir="${src}">
                <include name="**/*Bean.java"/>
            </fileset>

            <remoteinterface/>
            <homeinterface />
            <localinterface/>
            <localhomeinterface/>
        </ejbdoclet>
    </target>


Whats killing me is that the interface classes are generated, but they are 
"empty". They dont contain the create method, nor the getter/setter methods. 
Furthermore, I have a Stateless Session bean right along side this class for 
which xdoclet generates everything correctly. Again, I must be doing something 
really dumb. Its very likely as I am new to j2ee programming.

Thank You so much for taking a look at this.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3854803#3854803

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3854803


-------------------------------------------------------
This SF.Net email is sponsored by:
Sybase ASE Linux Express Edition - download now for FREE
LinuxWorld Reader's Choice Award Winner for best database on Linux.
http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to