You can also use dependency injection to inject a reference to a bean into another bean using the faces-config.xml
________________________________ Von: Angel Miralles Arevalo [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 26. Juli 2007 16:15 An: MyFaces Discussion Betreff: Re: Instantiate a backing bean from other It isn't necesary managed bean in session scope, for example: AuthorizationMembersGroupBean menGroup = (AuthorizationMembersGroupBean) getApplication().createValueBinding("#{requestScope.authorizationMembersGroupBean}").getValue(facesContext); getApplication().createValueBinding("#{requestScope.authorizationMembersGroupBean}").setValue(facesContext,menGroup); What you need to know is than you obtain the managed bean, alter it and you have to update it in facesContext...the second line... ----- Mensaje original ---- De: daniel ccss <[EMAIL PROTECTED]> Para: MyFaces Discussion <[email protected]> Enviado: jueves, 26 de julio, 2007 15:56:25 Asunto: Instantiate a backing bean from other Is there a way to use a BackingBean from another BackingBean o another class, the scope of the backing bean is session. For example I need to call the get method of a variable of a BackingBean on another Backing Bean It is possible or I´m to crazy? ________________________________ Sé un Mejor Amante del Cine ¿Quieres saber cómo? ¡Deja que otras personas te ayuden! <http://us.rd.yahoo.com/mail/es/tagline/beabetter/*http://advision.webevents.yahoo.com/reto/entretenimiento.html> .

