[POP.001.0002] A \"java.lang.NumberFormatException\&quo

From MWM, when I go to Monitoring > System-Wide > Six Sigma summary I get the following error:

[POP.001.0002] A “java.lang.NumberFormatException” occurred with the Message "For input string: “0,83"”

I suppose it is due a language configuration problem with the , in English and Spanish. How can I solve it?

Thanks in advance.

These are the details:
java.lang.NumberFormatException: For input string: “0,83”

The problem is caused by the Spanish locale, in which the decimal separator is “,” instead of “.” . One can circumvent the issue by forcing the Java virtual machine to use the US locale, instead of the OS default.

This can be done by editing the file (webMethods home)\MWS\bin\server.bat and, somewhere after the line saying

set SERVICE_NAME=…

Add the following new line:

set JAVA_OPTIONS=%JAVA_OPTIONS% -Duser.language=en -Duser.region=us

Regards