William I. Zumwalt penned

> Otherwise, if I put /** * @ejb.home-method */ tags
> before ejbRemove(), ejbActivate(), etc... I get errors
> when trying to load my ejb's in the app server.

Why were you marking those as home methods (unless just to test it out)?
In any case, tagging a method home-method means that you want to be able
to call that method from the home interface. You'd need to name the
abstract bean class's method "ejbHomeRemove" to have a home method
called "ejbRemove."

I suspect XDoclet did what it could (created ejbRemove on the home
interface), but then JBoss couldn't find ejbHomeRemove on your abstract
bean class, causing a verification error.

-- 
David Harkness                               Sony Pictures Digital
Sr. Software Engineer   310.482.4756    [EMAIL PROTECTED]

        Those who judge the value of advice by its source
        will at once dismiss the best and follow the worst.


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to