Hi @all,
we are trying to bring the tomcat in our FS 5.2 R3 landscape to Tomcat 8. We're using tomcat in place of the internal jetty. The Tomcat 8 runs fine and showing all Web-Applications correctly. The only problem we have is, that in fs5preview and fs5webedit the html files are not displayable in the right way. We figure out, that the reason must be located in the new way of accessing the jasper ressources in the tomcat itself, I copy the the lines from the web.xml her to this post:
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>fork</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>development</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>checkInterval</param-name>
<param-value>30</param-value>
</init-param>
<init-param>
<param-name>xpoweredBy</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>compilerSourceVM</param-name>
<param-value>1.8</param-value>
</init-param>
<init-param>
<param-name>compilerTargetVM</param-name>
<param-value>1.8</param-value>
</init-param>
<load-on-startup>3</load-on-startup>
</servlet>
and additionally:
<!-- The mappings for the JSP servlet -->
<servlet-mapping>
<servlet-name>jsp</servlet-name>
<url-pattern>*.jsp</url-pattern>
<url-pattern>*.jspx</url-pattern>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
Is there somebody, who had the same problems in her/his landscape and can give us a hint, how to handel these 404 problems in fs5preview and fs5webedit ? Thanks in advance and best regards
Torsten