[EMAIL PROTECTED] wrote: >Hello all, > >I posted an installation problem, but maybe it was not clear enuf, so here is a >second try. > >Basically, I install jetspeed, and when I http to /jetspeed I get the following error: > >Error: 500 >Location: /jetspeed/WEB-INF/templates/jsp/layouts/html/default.jsp >Internal Servlet Error: > >javax.servlet.ServletException > at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:399) >... >... >... >Root cause: >java.lang.NoSuchMethodError > at >org.apache.jasper.compiler.TagLibraryInfoImpl.createAttribute(TagLibraryInfoImpl.java:524) > I had to patch this some time ago (in Tomcat). It is a problem related with versions of servlet API in your classpath. Use a recent version of Tomcat, and leave just one servlet.jar file around (a modern one).
The error means that, during jsp page compilation, the version of the servlet API around is different than the one that jasper is trying to compile against. With Tomcat 3.2.3, 3.3 or 4 you should have no problem. With 3.2 or 3.2.1 I think it happened, but I cannot remember clearly. > > >I have jasper.jar in my classpath and int tomcat/lib. Does anyone know why this is >happening. I'm at my wits end.... > >Also, /jetspeed/index.jsp contains <jsp:forward page="portal/"/>. How does that end >up getting redirected to /jetspeed/WEB-INF/templates/jsp/layouts/html/default.jsp > /jetspeed/portal is executed by the org.apache.turbine.Turbine servlet. Then Turbine starts its machinery. A turbine request is handled via objects called page, layout, navigations, screens, actions. /jetspeed/WEB-INF/templates/jsp/ contains templates for these objects. Jetspeed screens are rendered using PSML documents, which are specifications of how to render portlets in a given screen. > > >I'm assuming all that is required is tomcat, and no other jar files. > >Sorry for the extra post. > >Thanks alot, > >gandalf > > > >________________________________________________ >Don't Just Network, Build Relations. >Please visit us at http://www.BizRelations.com > > >------------------------------------------------------------------------ > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
