-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Low
-
None
-
Affects Version/s: 6.3.0, 7.0.0, 7.1.0
-
Component/s: Core features
-
None
-
1
-
Severity 3 - Minor
Issue Summary
As part of the default server.xml file that is shipped with Crowd, we can see below details for the couple of parameters -
sendReasonPhrase="true" compressableMimeType="text/html,text/xml,application/xml,text/plain,text/css,application/json,application/javascript,application/x-javascript" />
Steps to Reproduce
sendReasonPhrase has been deprecated and removed from Tomcat 9 onwards.
compressableMimeType has been incorrectly mentioned instead of compressibleMimeType
Expected Results
compressibleMimeType should be defined correctly and sendReasonPhrase should not be used.
Actual Results
The below warnings can be seen under crowd catalina logs -
14-Jan-2026 21:07:28.445 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [sendReasonPhrase] to [true]
14-Jan-2026 21:07:28.447 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [compressableMimeType] to [text/html,text/xml,application/xml,text/plain,text/css,application/json,application/javascript,application/x-javascript]
Workaround
Currently there is no known workaround for this behavior. A workaround will be added here when available