At first glance I can see one wrong thing, your entity component name is
"LoginAccount", so if you want to biject it, you should declare it as follows:
| @In @Out
| public LoginAccount LoginAccount;
|
or
| @In(value="#{LoginAccount}") @Out(value="#{LoginAccount}")
| public LoginAccount LoginAccount;
|
BTW, check whether your interface has the correct methods corresponding to component it is
implementing it.
HTH.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4053638#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...