I think maybe you are executing "en.nextElement()" twice..? Once for your logging and once inside your try block..?
Gordon Hu <[EMAIL PROTECTED]> wrote on 08/17/2005 10:54:22 AM: > for (Enumeration en = fileCounter.elements(); en.hasMoreElements(); ) { > System.out.println("In action " + en.nextElement ()); > System.out.println("The index is "+index); > try { > files[index] =(FormFile) en.nextElement(); Geeta