Hi, i am configured the zk with struts 1 . i created a list and set in the session.
List<String> nameList = new ArrayList<String>();
nameList.add( "xxx" ); nameList.add( "yyy" ); nameList.add( "nnn" ); nameList.add( "ddd" );
request.getSession().setAttribute("NAMES_LIST", nameList);
now from the zul file i am trying to get the session value.
. please tell me
usman