On 16.01.2020 10:36, Lmhelp1 wrote:
Hello,

Thank you for your answer.
Indeed, I have such a filter:

In "web.xml":
----------------------------------------------------------------------------------------
<!--
  <filter>
     <filter-name>EncodingFilter</filter-name>
<filter-class>com.[...].EncodingFilter</filter-class>
     <init-param>
<param-name>requestEncoding</param-name>
       <param-value>UTF-8</param-value>
     </init-param>
   </filter>
   <filter-mapping>
     <filter-name>EncodingFilter</filter-name>
     <url-pattern>/*</url-pattern>
   </filter-mapping>
-->
----------------------------------------------------------------------------------------

[...]

What happens if you disable that filter entirely, in web.xml ?
(comment-out the whole section above, as shown)

Note : ignore any character encoding errors that you may get in the response, 
for now.
(probably shown as <?>). The point is to verify if it is really that filter which causes the problem with the CSS files.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to