How can I retrieve the results of a LDAP search in pages and also define number of entries on each page?
Location: http://www.jguru.com/faq/view.jsp?EID=353054 Created: Mar 16, 2001 Modified: 2001-03-16 10:02:36.425 Author: John Mitchell (http://www.jguru.com/guru/viewbio.jsp?EID=4) Question originally posed by venkat ravula (http://www.jguru.com/guru/viewbio.jsp?EID=279259 Set the Context.BATCHSIZE property before you create the context: // Set the batch size to 25… env.put (“java.naming.batchsize”, “25”); DirContext dc = new InitialDirContext (env); //…