Yep, that works....Thanks for the response!

FYI for the next unfortunate soul that comes across this. Instead of using :


  | @RequestParameter
  | private Long myId
  | 

you need to take out the request parameter annotation and just have the member 
declaration.

In your bean interface add the following methods :


  |   Long getMyId();
  |   void setMyId(Long myId);
  | 

and implement these two methods in your session bean to get/set the myId member.

In pages.xml for the page that needs the parameter put :


  |   <param name="myId" value="#{MyBean.myId}"/>
  | 



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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4085120
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to