I've upgraded to the latest release of xdoclet (1.2), and I'm still having
some problems with the facade generation.

The problem I'm having is that the facade callbacks to my ejbCreate methods
are getting generated incorrectly.

For example, I have an entity bean with an ejbCreateABC and and an
ejbCreateDEF method.  The facade that xdoclet generates exposes two
corresponding create methods:

createABC(params) {
    return getLocalHome().create(params);
}

createDEF(params) {
    return getLocalHome().create(params);
}

But what I think it should be generating is:


createABC(params) {
    return getLocalHome().createABC(params);
}

createDEF(params) {
    return getLocalHome().createDEF(params);
}

--------------------

Has anyone experienced this and come up with a solution? I'm kind of stuck
here.

thanks,
Collin



-------------------------------------------------------
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_id=1470&alloc_id=3638&op=click
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to