| Author |
How to check scripting-invalid
|
Mukunthan Shanmuganathan
Ranch Hand
Joined: Jul 24, 2007
Posts: 32
|
|
Guys! In order to check <scripting-invalid> I did as below, result.jsp ========== <html> <body> <%= "Hi This is JSP" %> <% out.println("<br>This is a Scriptlet"); %> </body> </html> web.xml ======= <?xml version="1.0" encoding="ISO-8859-1"?> <web-app > <jsp-config> <jsp-property-group> <url-pattern>*.jsp</url-pattern> <scripting-invalid>true</scripting-invalid> </jsp-property-group> </jsp-config> <servlet> <servlet-name>test</servlet-name> <jsp-file>/result.jsp</jsp-file> </servlet> <servlet-mapping> <servlet-name>test</servlet-name> <url-pattern>/EL.do</url-pattern> </servlet-mapping> </web-app> Still the outcome shows as same when I get without <scripting-invalid> Why? Thank You.
|
Dare to know!
|
 |
 |
|
|
subject: How to check scripting-invalid
|
|
|