Table of Contents

Search

  1. Preface
  2. Welcome to Informatica Process Developer
  3. Using Guide Developer for the First Time
  4. Getting Started with Informatica Process Developer
  5. About Interfaces Service References and Local WSDL
  6. Planning Your BPEL Process
  7. Participants
  8. Implementing a BPMN Task or Event in BPEL
  9. Implementing a BPMN Gateway or Control Flow
  10. Using Variables
  11. Attachments
  12. Using Links
  13. Data Manipulation
  14. Compensation
  15. Correlation
  16. What is Correlation
  17. What is a Correlation Set
  18. Creating Message Properties and Property Aliases
  19. Adding a Correlation Set
  20. Deleting a Correlation Set
  21. Adding Correlations to an Activity
  22. Rules for Declaring and Using Correlation Sets
  23. Correlation Sets and Engine-Managed Correlation
  24. Event Handling
  25. Fault Handling
  26. Simulating and Debugging
  27. Deploying Your Processes
  28. BPEL Unit Testing
  29. Creating POJO and XQuery Custom Functions
  30. Custom Service Interactions
  31. Process Exception Management
  32. Creating Reports for Process Server and Central
  33. Business Event Processing
  34. Process Central Forms and Configuration
  35. Building a Process with a System Service
  36. Human Tasks
  37. BPEL Faults and Reports

Designer

Designer

Adding Multilingual Support for an .avcconfig File

Adding Multilingual Support for an .avcconfig File

For an overview of this topic, see Adding Multilingual Support to Process Central.
You can provide externalized strings for the following attributes in an Process Central configuration file:
  • Category names for the folders you add to Tasks, Forms, and Reports. For example, a Forms category named
    Tutorial and Samples
    contains the Process Developer tutorial request and the samples request forms.
  • Descriptions for reports and forms. For example, the tutorial form contains a description that says, "Submit loan approval request (basic tutorial)."
  • Names for the Task
    Role
    and
    Show
    picklists
To provide multilingual support:
  1. Create a new
    avcconfig
    file, as described in Creating a Process Central Configuration File. Store it in your
    deploy
    folder. For example,
    tutorial.avcconfig
    .
  2. For each name and description attribute in the file that you want to externalize, you must modify the place holder text to refer to a
    ${keyIdentifier}
    . For example:
    <tns:requestCategoryDef id="education" name="
    ${tutorial.and.samples}
    ">
  3. In a text editor, create a new
    .properties
    file that is the default externalized strings properties file for the
    .avcconfig
    file. For example,
    tutorialConfig.properties
    .
  4. The
    avcconfig
    file must refer to this file, so you must add the following line, indicating multilingual support, in your
    avcconfig
    file:
    <tns:i18n location="/path/to/tutorialConfig.properties" />
  5. In the default properties file, add each
    ${keyIdentifier}
    and its English value. For example:
    tutorial.and.samples=Tutorial and Samples
  6. As you add other externalized strings, add additional lines to the properties file, such as:
    tutorialRequest.description=Submit loan approval request (basic tutorial)
  7. For each additional language, make a copy of the default properties file, and change the value of the keyIdentifier for that language.
    tutorial.and.samples=Tutoriel et échantillons
  8. Name each file with an underscore and language name. For example:
    For example,
    tutorialConfig_fr.properties
  9. Ensure the copy is UTF-8 encoded. By default Process Developer sets the encoding to ISO-8859-1.
After deployment, test your properties by specifying a language when you login to Process Central. For example:
http://localhost:8080/activevos-central/login.jsp?lang=fr
Example Configuration File Snippet:
<tns:requestCategoryDef id="education" name="${tutorial.and.samples}"> <avccom:description> ${tutorialRequest.description} </avccom:description> <tns:i18n location="/path/to/tutorialConfig.properties" />
Example default properties file;
tutorial.and.samples=Tutorial and Samples tutorialRequest.description=Submit loan approval request (basic tutorial).

0 COMMENTS

We’d like to hear from you!