RootCauseunvalidated
Within the catch, there is a line saying httpResponse.getWriter() — In my custom filter I was catching an exception in case user didn't get authenticated. Tension: that code intends to return an instance of Writer in order to write in the body of the response. Outcome: since chartset is null, it uses a default charset of ISO-8859-1.
eb940520-1fc6-48c7-9f4d-4bec28ba04d1
Within the catch, there is a line saying httpResponse.getWriter() — In my custom filter I was catching an exception in case user didn't get authenticated. Tension: that code intends to return an instance of Writer in order to write in the body of the response. Outcome: since chartset is null, it uses a default charset of ISO-8859-1.