DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=28154>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=28154

setting of mappedfile in web.xml doesn't work

           Summary: setting of mappedfile in web.xml doesn't work
           Product: Tomcat 5
           Version: 5.0.14
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Jasper
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


as an aside, in some apache docs, it refers to "mappedFile", so I also tried 
that.

setting mappedfile to true doesn't cause multiple lines of html in the source to 
combined into a single write statement.

I have checked that largefiles is off, development is off, and turned off 
debugging in server.xml

here's fragment of my web.xml:
    <servlet>
        <servlet-name>jsp</servlet-name>
        <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
        <init-param>
            <param-name>fork</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>xpoweredBy</param-name>
            <param-value>false</param-value>
        </init-param>
                                                                                 
          
                                                                                 
          
        <!--   mappedfile Should we generate static content with one     -->
        <!--              print statement per input line, to ease        -->
        <!--              debugging?  [true]                            -->
        <!-- PADM: some tomcat docs refer to mixed case name -->
        <init-param>
            <param-name>mappedfile</param-name>
            <param-value>false</param-value>
        </init-param>
        <init-param>
            <param-name>mappedFile</param-name>
            <param-value>false</param-value>
        </init-param>
 
        <!--   classdebuginfo Should the class file be compiled with    -->
        <!--                  debugging information?  [true]            -->
        <init-param>
            <param-name>classdebuginfo</param-name>
            <param-value>false</param-value>
        </init-param>
 
        <!--   development    Is Jasper used in development mode (will check -->
        <!--                  for JSP modification on every access)?  [true] -->
        <init-param>
            <param-name>development</param-name>
            <param-value>false</param-value>
        </init-param>
 
        <!--   trimSpaces Should white spaces in template text between   -->
        <!--              actions or directives be trimmed?  [false]     -->
        <init-param>
            <param-name>trimspaces</param-name>
            <param-value>true</param-value>
        </init-param>
 
        <load-on-startup>3</load-on-startup>
    </servlet>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to