I'm not sure if the verifier is working all that well.
I'm getting:
Bean : Clickstream
Method : public abstract ClickstreamRemote create(BigDecimal, Date, BigDecimal, BigDecimal, BigDecimal, BigDecimal, BigD
ecimal) throws CreateException, RemoteException
Section: 12.2.9
Warning: The return type for a create(...) method must be the entity bean's remote interface type.
21:07:59,947 WARN [verifier] EJB spec violation:
Bean : Clickstream
Method : public abstract ClickstreamRemote create(BigDecimal) throws CreateException, RemoteException
Section: 12.2.9
Warning: The return type for a create(...) method must be the entity bean's remote interface type.
21:07:59,947 WARN [verifier] EJB spec violation:
Bean : Clickstream
Method : public abstract ClickstreamRemote findByPrimaryKey(BigDecimal) throws FinderException, RemoteException
Section: 10.6.10
Warning: The return type for a find method must be the entity bean's remote interface type (single-object finder
) or a collection thereof (for a multi-object finder).
ClickstreamRemote IS the entity bean's remote interface! I have no clue what to do. Well, except turn strict verifing off (Thanks for the tip).
Andrew
do you solve this problem, i get the same problem with you,can you help me?
my email :buck@webasp.net
thank you!
Hey I encounter similar problem when trying to deploy an updated version of a session bean. I was complained that the method signature does not match. But it's exactly same... I found the problem goes away when I restart the JBoss server.
Anyway I found multiple hot-deploy issues. One example is I just changed some logic in servlet and the change won't appear even after redeploy. But after server restart it looks fine....
I'm using JBoss 3.2.2
I noticed that for JBoss-specific EJB deployment, there is a new jboss_3_2.dtd for the jboss.xml files. There appear to be a lot of changes in this DTD from 3.0 to 3.2.
To run on JBoss 3.2.x, is it required for all EJB's to use the new 3.2 DTD? Or is there backward compatibility if an EJB uses the 3.0 DTD? When you convert from the 3.0 to 3.2 DTD, are there any tricky conversion issues?
Thanks,