Home>>>

Tomcat

Quick Table of Contents

  1. Tomcat
  2. Directory Listing
  3. Attribute value is quoted with " which must be escaped when used within the value
  4. Links

1. Tomcat

Tomcat is an Open Source web server.

Tomcat is a Servlet/JSP Container.

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

More Articles (showing 7 below)  
 2004-07-18
 2004-05-18
 2004-05-18
 2004-05-17
 2004-05-16
 2004-05-16
 2004-03-31