Hi,
I have a problem with moving "requestParameters" into my helper class, using this piece of code within my webflow.xml:
For some strange reason "requestParameters" seems to be converted into a string that looks like:Code:<view-state id="acquirePersonalData"> <on-render> <evaluate expression="orderProcessHelper.mapParams(requestParameters)" /> </on-render> <transition on="submit" to="summary" /> </view-state>
which looks pretty unfamiliar to me.Code:map['key' -> 'value', 'keyArr[someKey]' -> 'value', ...]
Methods with another signature (input parameter) like the following are ignored
Is there another way of moving the request parameters in, except for wrapping a HttpServletResponse around the helper class?Code:public void mapParams(String value);
Regs,
Rob


Reply With Quote
