[jboss-user] [JBoss Seam] - Re: Remoting does not invoke my @WebRemote ?
samdoyle
do-not-reply at jboss.com
Mon Jul 30 22:17:52 EDT 2007
Figured I better add the entire implementing class.
| @Stateless
| @Name("garageAccessor")
| public class GarageAccessorBean implements GarageAccessorLocal {
|
| @EJB
| private GarageEntityBeanFacadeLocal garageEntityBeanFacade;
|
| /** Creates a new instance of GarageAccessorBean */
| public GarageAccessorBean() {
| }
|
| public List<GarageEntityBean> getGarages()
| {
| List<GarageEntityBean> garages = garageEntityBeanFacade.findAll();
|
| return garages;
| }
|
| public void persist(Object object) {
| // TODO:
| // em.persist(object);
| }
| }
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4068973#4068973
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4068973
More information about the jboss-user
mailing list