is it possible to have the same Bean with two different scopes in JSF 1.2?? What I mean is:
<managed-bean>
<managed-bean-name>beanOne</managed-bean-name>
<managed-bean-class>files.bean.BeanOne</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
<managed-property>
<property-name>someConfiguration</property-name>
<value>#{configurationBean}</value>
</managed-property>
</managed-bean>
<managed-bean>
<managed-bean-name>beanOne</managed-bean-name>
<managed-bean-class>files.bean.BeanOne</managed-bean-class>
<managed-bean-scope>request</managed-bean-scope>
<managed-property>
<property-name>someParam</property-name>
<value>#{param.value}</value>
</managed-property>
</managed-bean>
Obviously, this solution doesn't work but it's what I want to do without having the same BeanOne two times with different names! Thanks!! ;)