struts hangs with "no FormBeanConfig found" on 1 of 3 environments
843838Nov 15 2006 — edited Nov 28 2006We have a problem with our application in Struts.
Struts is not my fulltime job, but I need to tackle an issue in an existing application.
First of all, can someone verify i understand the following correct ?
When the xxxForm is not found in the <form-bean>-tag of struts.xml, it looks
in the <action>-tags, where the name property = xxxForm.
Currently, we have our application on three environments.
Only on one environment our application hangs.
We see in the of two working environments in the logs:
- org.apache.struts.util.RequestUtils | No FormBeanConfig found under 'xxxForm'
- org.apache.struts.action.RequestProcessor | Looking for Action instance for class be.xxxxx
- org.apache.struts.action.RequestProcessor | Returning existing Action instance
and everything continues normal
We see in the non-working environment:
- org.apache.struts.util.RequestUtils | No FormBeanConfig found under 'xxxForm'
and there it hangs
Our struts-config.xml file looks as follows:
- The <form-beans>-tag is empty.
- I find the xxxForm as a name-property under an <action>-tag
anyone can help?