You declared the method in the interface as abstract, maybe that's the
problem ?

public void updateUser(...)           [UserManagerBean.java]
public abstract void updateUser(...)  [UserManager.java]

Ciao
Annegret


> -----Original Message-----
> From: Pelle Poluha [SMTP:[EMAIL PROTECTED]]
> Sent: Montag, 9. Juli 2001 13:09
> To:   [EMAIL PROTECTED]
> Subject:      [JBoss-user] Help - deployment error
> 
> Hello!
> 
> I'm getting this deployment error:
> [Verifier]
> Bean   : UserManager
> Method : public abstract void updateUser(String, String, String, String,
> int, Co
> llection) throws RemoteException, UserException
> Section: 6.10.5
> Warning: The methods defined in the remote interface must have a matching
> method
>  in the bean's class with the same name and same number and types of
> arguments.
> 
> Seems clear enough. But the definition of updateUser is the same in the
> remote interface and the bean class. I've unzipped the jar and run javap
> to
> make sure:
> 
> C:\temp>javap -classpath /ServerApplications/jboss/lib/ext/ejb.jar;.
> UserManagerBean
> Compiled from UserManagerBean.java
> public class UserManagerBean extends java.lang.Object implem
> ents javax.ejb.SessionBean {
> ...
>     public void updateUser(java.lang.String, java.lang.String,
> java.lang.String,
>  java.lang.String, int, java.sql.Date, java.util.Collection) throws
> UserException;
> 
> C:\temp>javap -classpath /ServerApplications/jboss/lib/ext/ejb.jar;.
> UserManager
> Compiled from UserManager.java
> public interface UserManager extends javax.ejb.EJBObject
> {
>     ...
>     public abstract void updateUser(java.lang.String, java.lang.String,
> java.lan
> g.String, java.lang.String, int, java.sql.Date, java.util.Collection)
> throws
> jav
> a.rmi.RemoteException, UserException;
> 
> Am I missing something here? Any help appreciated!
> 
> Regards,
> Pelle Poluha
> 
> 
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user

_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to