The web-application spec allows the assignment of init-params to
JSP-files. I did the following in my web.xml file:
<servlet>
<servlet-name>config</servlet-name>
<jsp-file>/webanw/config.jsp</jsp-file>
<init-param>
<param-name>Init-param</param-name>
<param-value>wert3</param-value>
</init-param>
</servlet>
In the JSP-page config.jsp the call
config.getInitParameter("Init-param")
returns null when I use Tomcat 3.1. The same application works fine using
the Orion server. Now which is the correct behaviour?