yes, the compute method needs to be in your component interface... It seems to me that you are fairly new to EJB in general. In which case I think are going the wrong way about learning it. It's not like many languages or other parts of Java.. There are many rules that need to be followed. You will find it VERY discouraging if you try to write EJB's by trial and error.
The problem you're having now is XDoclet is not creating your Fibo.java correctly... the problem will likely be with the @ejb.interface-method attribute above the compute method in FiboBean.java. (Eclipse was correct in that you need the mothod defined in the interface, but it missed the RemoteException in the throws clause, but again, XDoclet should have taken care of that). <a href="http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3823896#3823896">View the original post</a> <a href="http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3823896>Reply to the post</a> ------------------------------------------------------- SF.Net is sponsored by: Speed Start Your Linux Apps Now. Build and deploy apps & Web services for Linux with a free DVD software kit from IBM. Click Now! http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click _______________________________________________ JBoss-Development mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-development
