Rupen Mody wrote:
> I am a newbie to both EJB and XDoclet. I have written
> a CMP bean with embedded xdoclet tags, but when i run
> the ant script, i does not generate the home and
> remote interfaces. Please find attached herewith my
> bean class and my build.xml file.

By specifying @ejb:bean ... view-type="local" in the class-level tags,
you are telling XDoclet to generate only the local interface and home.
But in build.xml you only ask for the remote interface and home to be
generated. You can change view-type to "both" or add

    <localinterface/>
    <localhomeinterface/>

to your build script.

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


-------------------------------------------------------
This SF.net email is sponsored by: Perforce Software.
Perforce is the Fast Software Configuration Management System offering
advanced branching capabilities and atomic changes on 50+ platforms.
Free Eval! http://www.perforce.com/perforce/loadprog.html
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to