Thanks, but my method isn't abstract.

My Home Interface:

package tutorial.interfaces;
  | 
  | public interface FiboHome extends javax.ejb.EJBHome
  | {
  |     public tutorial.interfaces.Fibo create()
  |        throws javax.ejb.CreateException,java.rmi.RemoteException;
  | }

Here is my Remote Interface:
package tutorial.interfaces;
  | 
  | import javax.ejb.FinderException;
  | 
  | public interface Fibo extends javax.ejb.EJBObject
  | {
  |    /**
  |     * Business method
  |     */
  |    public double[] compute(int number)
  |       throws java.rmi.RemoteException;
  | }


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3897010#3897010

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3897010


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to