When I deploy my portlet based on JSF Sun RI 1.1 I get the following warning for each of my navigation rules:
30.08.2006 16:41:05 com.sun.faces.config.rules.ManagedBeanRule end
WARNUNG: [ManagedBeanRule]{faces-config/managed-bean} Merge(DetailsBean)
<---snap--->
What is that and why does that occur?
The associated entry in faces-config looks like this:
<managed-bean>
<managed-bean-name>DetailsBean</managed-bean-name>
<managed-bean-class>com.myapp.DetailsBackingBean</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
Why does it give me a warning?
Also I get the warning
WARNUNG: [NavigationRuleRule]{faces-config/navigation-rule} Merge(/details.jsp)
30.08.2006 16:41:05 com.sun.faces.config.rules.NavigationRuleRule end
for each of my navigation rules. Why?
Those look like:
<navigation-rule>
<from-view-id>/details.jsp</from-view-id>
<navigation-case>
<from-outcome>showMenu</from-outcome>
<to-view-id>/menu.jsp</to-view-id>
</navigation-case>
<navigation-case>
<from-outcome>showContent</from-outcome>
<to-view-id>/content.jsp</to-view-id>
</navigation-case>
</navigation-rule>
Thanks so much
r.
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail.
- Managed beans and navigation in jsf-portlet faulty?,
rick joyner