Quick Table of Contents
- Tomcat
- Directory Listing
- Attribute value is quoted with " which must be escaped when used within the value
- Links
Tomcat
2. Directory Listing
To turn it off, edit conf/web.xml in the tomcat directory
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>
By default the setting is 'true'
3. Attribute value is quoted with " which must be escaped when used within the value
You can escape your attributes with ' or maybe \"
Otherwise use the JVM parameter -Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false
4. Links
-
Tomcat -- servlet container
| More Articles (showing 8 below) | |
|---|---|
| 2010-10-23 | |
| 2004-07-18 | |
| 2004-05-18 | |
| 2004-05-18 | |
| 2004-05-17 | |
| 2004-05-16 | |
| 2004-05-16 | |
| 2004-03-31 | |


Tomcat is an Open Source web server.