On 05/04/2021 13:19, Christopher Schultz wrote:
I'm happy with incremental changes. Making the first change will be an
improvement for sure.
On the other hand, if code calls request.setCharacterEncoding(non-null)
then it will overwrite whatever the request had previously sent
(including nu
Mark,
On 4/1/21 16:00, Mark Thomas wrote:
On 01/04/2021 17:08, Christopher Schultz wrote:
The javadoc says that it must be called before reading any request
parameters OR calling getReader() but there is only a check for the
reader.
Maybe we should change the check to:
if (using
On 01/04/2021 17:08, Christopher Schultz wrote:
The javadoc says that it must be called before reading any request
parameters OR calling getReader() but there is only a check for the reader.
Maybe we should change the check to:
if (usingReader || parametersParsed) {
re
All,
Yesterday, I struggled to determine why my application was behaving
differently than it had been in the past, and the problem turned out to
be that I had inserted a in the filter-chain before my
CharacterEncodingFilter. My new was reading a
request-parameter. The CharacterEncodingFilte