Re: Solr JSP compilation error

2008-12-08 Thread Sorbo
We are not using JSPs anywhere. Everything else works because they don't need to be compiled like JSPs. Tomcat 5.5.9 uses JDT compiler for compiling JSPs which doesn't understand Java 1.5. ryantxu wrote: > > I think your best option is to edit the jsp and remove that syntax... > > So you are

Re: Solr JSP compilation error

2008-12-08 Thread Ryan McKinley
I think your best option is to edit the jsp and remove that syntax... So you are not running 1.5? how does anything else work?! On Dec 8, 2008, at 10:12 AM, Sorbo wrote: Yes everything works except the JSPs. The errors are with the Java 1.5 syntax viz with the index.jsp it doesn't like

Re: Solr JSP compilation error

2008-12-08 Thread Sorbo
Yes everything works except the JSPs. The errors are with the Java 1.5 syntax viz with the index.jsp it doesn't like the Java 1.5 syntax for( org.apache.solr.core.SolrCore core : cores.getCores() ) {%> This is the stack trace org.apache.jasper.JasperException: Unable to compile class for JSP An

Re: Solr JSP compilation error

2008-12-07 Thread Ryan McKinley
what is the error? Does everything work except the jsp? On Dec 7, 2008, at 11:53 PM, Sorbo wrote: Hi, I'm using Solr 1.3 with Tomcat 5.5.9 and getting JSP compilation errors with the Java 1.5 syntax in the admin JSP pages. I cannot upgrade to higher version of Tomcat at the moment. What ar