Hi all,

I'm a newbie to both EJB and jBoss, and loving them both!!
I have the latest 2.0 final (actually the following happened in 2.0 beta03,
too).
I have an app which consists of 2 entity and one session. Everything works
fine, but on deployment, I get this message from the verifier:

[Verifier] 
Bean   : CCProcessorBean
Method : public abstract CCProcessor create() throws RemoteException,
CreateException
Section: 6.10.6
Warning: The method return values in the home interface must be of valid
types for RMI/IIOP.

This is the session bean, it's the only one I get this message for. This is
the declaration of the home interface:

import java.rmi.RemoteException;
import javax.ejb.CreateException;

public interface CCProcessorHome extends javax.ejb.EJBHome {
    public CCProcessor create()
        throws RemoteException, CreateException;
}

CCProcessor is the remote interface, defined as:

import javax.ejb.EJBException;
import java.rmi.RemoteException;

public interface CCProcessor extends javax.ejb.EJBObject {
    public int processTransaction(String xml)
        throws EJBException, RemoteException, CCTransactionException;
    public String sendBatch()
        throws EJBException, RemoteException;
}


...any ideas?

Thanks, Luis.


--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
List Help?:          [EMAIL PROTECTED]

Reply via email to