This content has been marked as final.
Show 3 replies
-
1. Re: Exposing remote methods
jason.greene May 26, 2004 9:04 AM (in response to cartola)Yes, the way this works is that the ejb provider first searchs for a local interface to your bean, and then finally a remote interface. So, all you need to do is set your view type to remote.
-Jason -
2. Re: Exposing remote methods
jason.greene May 26, 2004 9:13 AM (in response to cartola)I should clarify this, you must set the view type of the bean to remote (Adding view-type="remote" to @ejb.bean)
-
3. Re: Exposing remote methods
cartola Oct 28, 2004 11:18 AM (in response to cartola)thanks, I apreciate.