Many of the remaining testsuite errors seem to be caused by the verifier
complaining about bean methods that throw RemoteException: for instance

2002-08-31 17:54:42,313 WARN  [org.jboss.ejb.EJBDeployer.verifier] EJB spec
violation: 
Bean   : ExceptionTesterEJB
Method : public abstract void remoteExceptionInTx()
Section: 7.10.7
Warning: All the exceptions defined in the throws clause of the matching
method of the session bean class must be defined in the throws clause of
the method of the remote interface.

bean:

   public void remoteExceptionInTx() throws RemoteException {
      throw new RemoteException("Remote exception from within " +
            " an inherited transaction");
   }

remote interface:

   public void remoteExceptionInTx() throws RemoteException;

Is this really a spec violation???


Thanks
david jencks


-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
cell phone?  Get a new here for FREE!
https://www.inphonic.com/r.asp?r=sourceforge1&refcode1=vs3390
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to