Hi Everyone
I know this error message has been posted to death but I cannot find a sollution to my problem with the current postings.
Below is a partial listing of the error:
09:22:00,292 ERROR ProcessValidationsPhase:83 - Can't find bundle for base name resources.*, locale en_US
java.util.MissingResourceException: Can't find bundle for base name resources.*, locale en_US
at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle.java:804)
at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:773)
at java.util.ResourceBundle.getBundle(ResourceBundle.java:661)
at com.sun.faces.util.MessageFactory.getMessage(MessageFactory.java:121)
This error occurs on a value change event from a jsp, see below:
<tr> <td>
<h:selectOneMenu id="LAsel" value="#{RequestAdviceBean.namesAdvisorsSelectedList}" onchange="submit()" valueChangeListener="#{RequestAdviceBean.SetValueEvent}">
<f:selectItems id="LAitems" value="#{RequestAdviceBean.namesAdvisorsList}" />
</h:selectOneMenu></td>
</tr>
There is no "Getbundle" code in the backing bean it is simply calling a property setter. I have also verified that the resource bundle is in the classpath and the jar.
thanks