cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SAP Enable Now

Former Member
0 Likes
982

Hello!

We had setup up a new installation of Enable Now, on an Apache Tomcat 9.0.19

It looks work well, but we are having issues with the "spanish" language. The menues and messages are not showing correctly (the special characters used in "spanish" like (á, é, í, etc) are displayed like "illegible" characters.

We have changed the web.xml and server.xml to use the UTF-8 encoding characters, but it seems not worked.

Any help will be gracefull

Thanks in advance

Accepted Solutions (1)

Accepted Solutions (1)

MichaelSzmrtits
Product and Topic Expert
Product and Topic Expert

Hi Gustavao,

can you please make sure that you have done this steps: (discribed in the Manager SQL installation Guide)

1. Go to the installation directory of your Tomcat instance.

2. Open folder conf.

3. Open file web.xml.

4. Search for the default servlet <servlet-name>default</servlet-name>.

5. Add the following code to the servlet:

Syntax

<init-param>

<param-name>fileEncoding</param-name>

<param-value>UTF8</param-value> </init-param>

6. Save and close the file.

7. Restart the Tomcat Server.

If this will not work, I would suggest to open an Incident message by using the component: KM-WPB-MGR. If this answer was helpful please accept it 🙂 Best regards, Michael

Former Member
0 Likes

Hello, Michael.

Thank you so much for your quickly answer. In response to your question, we change the web.xml as follows (and the problem continues):

<servlet>

<servlet-name>default</servlet-name>

<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>

<init-param>

<param-name>debug</param-name>

<param-value>0</param-value>

</init-param>

<init-param>

<param-name>listings</param-name>

<param-value>false</param-value>

</init-param>

<init-param>

<param-name>requestEncoding</param-name>

<param-value>UTF-8</param-value>

</init-param>

<init-param>

<param-name>fileEncoding</param-name>

<param-value>UTF8</param-value>

</init-param>

<load-on-startup>1</load-on-startup>

</servlet>

Greetings!

MichaelSzmrtits
Product and Topic Expert
Product and Topic Expert
0 Likes

Hi Gustavo, then I would suggest to try the upgrade to 9.0.38 as Anton has suggested, and if the issue continues, please open an incident message.

Best regards, Michael

Answers (1)

Answers (1)

Anton_Mavrin1
Product and Topic Expert
Product and Topic Expert

Hi gustavo.ruffin,

In addition to UTF-8 fix for Apache Tomcat 9, please also consider upgrading your Tomcat to version 9.0.38, as previous versions had security issue. (Apache Tomcat 9.x vulnerabilities)

Apache Tomcat 9.0.38 is tested with SAP Enable Now and will become officially supported in November 2020.

BR, Anton