Hello,

i have an application that works fine un Spring 1.2.5.
i update to 1.2.6, and not work.

in a FormController, i have:

public ModelAndView onSubmit(
HttpServletRequest request,
HttpServletResponse response,
Object command,
BindException errors)
throws Exception
{

int idEntidadReceptora = RequestUtils.getRequiredIntParameter(request, "idEntidadReceptora");
_logger.info("IdEntidadReceptora...." + idEntidadReceptora);

Pago pago = (Pago)command;
_logger.info("IdEntidadReceptora...." + pago.getIdEntidadReceptora());
...


well, the request parameter is ok, get "30"
but the int in the command object is wrong: "24"

what happens?

thans in advance,
César.