Hi
We are using Spring MVC in our application. In our web page, there are a series of hidden input as such:
<input type="hidden" value="true" name="isEntryChecked[0][3]">
<input type="hidden" value="true" name="isEntryChecked[1][2]">
<input type="hidden" value="true" name="isEntryChecked[2][0]">
When our application is deployed in Tomcat, a two dimensional boolean array would be constructed in the command.isEntryChecked field. However, when the application is deployed in WebSphere, I got a null value in this field.
What would be the problem of why this array can't be parsed in websphere?
How should I create such two dimensional array?
thanks
Peter
We are using Spring MVC in our application. In our web page, there are a series of hidden input as such:
<input type="hidden" value="true" name="isEntryChecked[0][3]">
<input type="hidden" value="true" name="isEntryChecked[1][2]">
<input type="hidden" value="true" name="isEntryChecked[2][0]">
When our application is deployed in Tomcat, a two dimensional boolean array would be constructed in the command.isEntryChecked field. However, when the application is deployed in WebSphere, I got a null value in this field.
What would be the problem of why this array can't be parsed in websphere?
How should I create such two dimensional array?
thanks
Peter