1.

How Is Scripting Disabled?

Answer»

SCRIPTING is disabled by setting the scripting-invalid element of the deployment descriptor to TRUE. It is a sub element of JSP-property-group. Its valid values are true and false. The syntax for disabling scripting is as FOLLOWS:
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<scripting-invalid>true</scripting-invalid>
</jsp-property-group>

Scripting is disabled by setting the scripting-invalid element of the deployment descriptor to true. It is a sub element of jsp-property-group. Its valid values are true and false. The syntax for disabling scripting is as follows:
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<scripting-invalid>true</scripting-invalid>
</jsp-property-group>



Discussion

No Comment Found