I have an entity bean named "member" to represent a user of our system.  When a 
user logs in, the member is stored to a context variable:


  | @In @Out
  | private Member member;
  | 

and accessed from jsf like this: #{member.first_name}

Now I want to store another member to a context variable and display that users 
details like this: #{otherMember.first_name}

Shouldn't the code look like this?


  | @Out (value="otherMember")
  | private Member otherMember;
  | 

But this doesn't work...nothing shows up for #{otherMember.first_name}

What am I doing wrong?

Thanks,
Chad

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3939124


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to