Im using JBoss 7.1.3. Currently, when I send a request to the server with a special character like
Café
it is accepted by the server as
Café
The only advice I found on the Internet for a fix was to add these sysmte properties to $ JBOSS_HOME / standalone / configuration / standalone.xml ...
<system-properties>
…
<property name="org.apache.catalina.connector.URI_ENCODING" value="UTF-8"/>
<property name="org.apache.catalina.connector.USE_BODY_ENCODING_FOR_QUERY_STRING" value="true"/>
</system-properties>
However, even after rebooting my server, my special characters still get wrong on the server side. What else can I do to correctly interpret the characters?
source
share