Disabling JSP - can't find "JspLicenseServlet" in any config files (CF9 Ent.)
We are running CF9.0 Enterprise with the JRun4 configuration. Adobe discusses disabling JSP functionality in the web.xml and default-web.xml files by commenting out the servlet-mapping like so:
<!--
<servlet-mapping>
<servlet-name>JspLicenseServlet</servlet-name>
<url-pattern>*.jsp</url-pattern>
</servlet-mapping>
-->
Problem is I don't have a "JspLicenseServlet" value in any of my xml config files. I do however have a "JspServlet" value which I have commented out like so:
<!--
<servlet-mapping>
<servlet-name>JSPServlet</servlet-name>
<url-pattern>*.jsp</url-pattern>
</servlet-mapping>
-->
Is this sufficient?
