[jboss-user] [EJB 3.0 Users] - Re: Remote and local interface on same ejb instance

2009-11-18 Thread Wolfgang Knauf
Hi, do you mean something like this? | @Stateless | public class ABean implements ARemote | { | //Access B and C through local interface? | @EJB | private BBean; | | @EJB | private CBean; | } | | | @Remote | public interface ARemote | { | } | |

[jboss-user] [EJB 3.0 Users] - Re: Remote and local interface on same ejb instance

2009-11-16 Thread jaikiran
Sorry, but i did not understand your question. Can you please elaborate on what you are doing? View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4265869#4265869 Reply to the post : http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4265869

[jboss-user] [EJB 3.0 Users] - Re: Remote and local interface on same ejb instance

2009-11-16 Thread zlatko.jo...@gmail.com
Thanks for reply I have three stateful beans A,B and C. Beans B and C are parts of A bean and A bean access it through local interface. Is ti posible to create remote interface for same instances, B and C beans, and delegate it to remote client. This means thath both clients, A bean and remote