hii everyone,
i have also faced the same problem, so what i did is i changed the ArrayList to Vector in line :
if (eval.getClass().isAssignableFrom(Vector.class)) {
@SuppressWarnings("unchecked")
List<SelectChoice> dynamicChoices = (Vector<SelectChoice>) eval;
in ExternalDataUtils files.
and it worked for me,just try once.
Thank u !!