String x = request.getParameter("xCoord"); String y = request.getParameter("yCoord"); //Both must be present. if (x != null && x.length() > 0 && y != null && y.length() > 0) { setXCoord(Integer.parseInt(x)); setYCoord(Integer.parseInt(y)); }
which works.
Is this a bug in Struts? (I'm using v1.1b3). Any help appreciated.
The javabean specification states that if the first two letter of the property is uppercase, then
it should be leave alone, and not converted the first one to lowercase.
So if you have getXCoord() and getYCoord(), then your property should be referenced as
XCoord and YCoord in your jsp.
Hth,
Tib
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

