Creating a resource bundle and registering the resource bundle with the invoker entry mapping file

To create a resource bundle for an invoker:
  1. Create the .properties file according to the Resource bundle file sample.
  2. Extract BTTInvoker.jar to a local directory.
  3. Find the file com\ibm\btt\cs\invoker\base\BeanInvokerRegistryMapper.properties in that directory and open it.
  4. Register the .properties file in BeanInvokerRegistryMapper.properties:
    • If you put your resource bundle file under the Web content directory, add the following statement to the file:
      yourInvokerName=/properties/yourPropertiesFileName.properties:PROP 

      Note that you should replace yourInvokerName with the name of your invoker, and /properties/yourPropertiesFileName.properties with the path of your .properties file.

    • If you package your resource bundle files into a .jar file, add the following statement to the file:
      yourInvokerName=com.ibm.btt.appl.yourPropertiesFileName:RB

      Note that you should replace yourInvokerName with the name of your invoker, and com.ibm.btt.appl.yourPropertiesFileName with the package name of your .properties file.