Does anybody have a good example of an ActionForm/<html:select multiple="true"> combo that works? I've been banging my head against a wall for a week now trying to figure out what the issue is. With tracing turned on, the Struts RequestProcessor IS receiving a String[], but when BeanUtils attempts to call the setters in my ActionForm, it only sets the first value, which of course fails, because my setter expects an array, not a single item.

I'd be happy to send more stacktrace and trace logs if anybody would find it useful, but it basically boils down to this:

RequestProcessor - handling foo["bar","baz"]
BeanUtils - calling setFoo("bar")
InvalidParameter Exception - setFoo expects String[], but BeanUtils is calling with a String.


w

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to