> I'm just using a simple <h:dataTable>. My nav rules & action look fine > (very similar to my other pages that work correctly). That bean > (transLocaleBean) is not defined within my faces-config.xml file > because it is the value of the var attribute and is not a regular > managed bean. It renders correctly, it just does not process the > correct components when I submit.
If your bean is not defined in faces-config.xml then why is JSF trying to instantiate it? That is what the following log message seems to indicate is happening: (66016 ms) [http-8080-Processor24] WARN : org.apache.myfaces.el.VariableResolverImpl#resolveVariable : Variable 'transLocaleBean' could not be resolved. I would suggest solving this riddle first. Its most likely related to your problem although I can't see the connection offhand. sean

