Are you trying to access a different Bean than what you have called the method 
on? ie. your s:button called BeanA and you want to access properties of BeanB.

If so, then assuming BeanB has been outjected into the Conversation scope, you 
just need to inject BeanB into your BeanA. eg in BeanA.java :@In
  | BeanB beanB;
or if you'd rather call it inline:if(getConversation()!= null)
  | {   //Aqui me cargo la conversacion si es que existe
  |     System.out.println("conversation ID  " 
.concat(getConversation().getId()));
  |     //access to managed bean in Conversation
  |     BeanB beanB = (BeanB)Component.getInstance("beanB");
  | }
  |    
Cheers,

Damian.

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

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

Reply via email to