Well, you call "iterateOverItems" which has the following code: > while (iterator.hasNext()){ > Object currentItem = iterator.next(); > valueStack.push(currentItem); > LOG.debug("item: " + currentItem); > }
That just loops over the collection and pushes each onto the stack; I guess I'm not sure what you expected that code to do. Did you look at the code for the S2 iterator tag? That would probably give you a hint about how to accomplish what you want. Here's a hint: don't iterate over the entire collection at once. "start" begins the iteration. "end" sees if there's more to iterate over. d. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]