Changing the language in APM TeamCenter, Webview and Workstation
search cancel

Changing the language in APM TeamCenter, Webview and Workstation

book

Article ID: 127067

calendar_today

Updated On:

Products

CA Application Performance Management (APM / Wily / Introscope)

Issue/Introduction

How to configure English as default language for example?

Environment

APM 10.x
 

Resolution


Team Center and Webview

Upgrade to 10.8

Add new property "introscope.webview.locales" in the IntroscopeWebview.properties, for example: introscope.webview.locales=en


Workstation Webstart 

1.Open [EM-Install]\product\enterprisemanager\plugins\com.wily.introscope.workstation.webstart_<version>\WebContent\jnlp\workstation.jsp
2.Added these two lines in the <application-desc>-section to configure english as default language

<argument>-nl</argument>
<argument>-en</argument>


Excerpt of workstation.jsp:

<!--  <application-desc main-class="org.eclipse.equinox.launcher.WebStartMain">-->
  <application-desc main-class="com.ca.apm.introscope.workstation.webstart.launcher.LaunchWrapper">
  <%-- osgi argument required to prevent immediate post-launch shutdown --%>
    <argument>-noexit</argument>
    <argument>-clean</argument>
     <argument>-nl</argument>
     <argument>en</argument>


  <%-- standard workstation console args --%>
        <argument><%=emDefaults.kLoginHostStrings[0]%></argument>
        <argument><%=emDefaults.getRequestHost(request)%></argument>
        <argument><%=emDefaults.kLoginPortStrings[0]%></argument>
        <argument><%=emDefaults.getRequestPort(request)%></argument>
        <argument><%=emDefaults.kAutofillEnabledStrings[0]%></argument>
        <argument><%=emDefaults.getAutofillEnabled()%></argument>
        <argument><%=emDefaults.kTimeZoneStrings[0]%></argument>
        <argument><%="timezone"%></argument>

<%-- login and optional console arguments --%>
        <%=consoleArgs%>
  </application-desc>

 3.Relaunch the Webstart workstation 

Additional Information