Below is the html tag multibox which i want to migrate it to struts 2
<html:multibox name="unitForm" property="eservices">
<bean:write name="service"/>
</html:multibox>
as it is checkbox so thought of using simple checkbox which is in the iterator so i used below code
<s:checkbox theme="simple" name="unitForm.eservices"></s:checkbox>
in action
String[] toArray = new String[selectedadminVOs.size()];
unitForm.setEservices(selectedadminVOs.toArray(toArray));
stuck here,without or minimal changes in action code how can i migrate it to struts2