Re: Struts logic iterate

2003-10-06 Thread Erik Hatcher
Hits is not a java.util.Collection, so you cannot directly iterate through it using logic:iterate. There are some Lucene-specific tag libraries that may do what you're after within the jakarta-lucene-sandbox CVS repository (you'll have to check out that module and build them yourself,

RE: lucene complains about invalid class file format in rt.jar

2003-10-06 Thread Wilton, Reece
Classes compiled with JDK 1.4 or above may generate classes that are incompatible with versions below 1.4. Compile the code with 1.3 and you should be ok. -Original Message- From: Rob Tanner [mailto:[EMAIL PROTECTED] Sent: Friday, October 03, 2003 2:27 PM To: [EMAIL PROTECTED] Subject:

Re: Struts logic iterate

2003-10-06 Thread Tatu Saloranta
On Monday 06 October 2003 08:35, Lars Hammer wrote: ... to iterate the Hits. I thought that Hits was an array of pointers to docs, ^^^ Actually, Hits contains a Vector (could be an array as well), but is not a Collection itself