In CA Service Catalog 14.1 and higher, Spanish special characters (such as accents or tildes) may not display correctly in the user interface. This usually manifests as garbled text or incorrect symbols where accented letters should appear. This issue occurs when the Tomcat application server is not configured to handle UTF-8 URI encoding.
Symptoms:
The URIEncoding="UTF-8" parameter is not defined in the Tomcat server.xml file. Without this attribute, Tomcat does not correctly interpret non-ASCII characters passed through URIs.
Follow these steps to enable UTF-8 encoding in the Service Catalog Tomcat configuration:
server.xml file located in the %USM_HOME%\view\conf directory.server.xml file in a text editor.URIEncoding="UTF-8" Example for HTTPS: <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" URIEncoding="UTF-8" ... />URIEncoding="UTF-8"server.xml file.