Re: Struts 2 tag : Unable to retrieve the value in theaction

2008-04-29 Thread Laurie Harper
> <- Start JSP -> > id="selectKeyword" name="selectKeyword" list="selectKeyword" > multiple="true"> > <- End JSP -> You've specified 'selectKeyword' for every attribute... Each of those attributes has a different meaning, so this wont work. You need two properties on your acti

RE: Struts 2 tag : Unable to retrieve the value in theaction

2008-04-28 Thread Binu John
This does not help. :( I tried using the setter method as below void setSelectKeyword(String[] selectKeyword) { log.debug(LoginAction.class.getName() + ": execute() : Checkpoint 1"); this.temp = selectKeyword; } But the log statement even does not gets printed. That me