Configuring RequestProcessor and TokenProcess name

The Bank Transformation Toolkit provides:
  1. To use customer’s RequestProcessor implementation, add the following definition in each struts_config_XX.xml:
    <struts-config>
    ………..
    <controller processorClass="com.customer.RequestProcessor"/>
    …….
    </struts-config>
  2. To use BTTRequestProcessor implementation, add the following definition in each struts_config_XX.xml:
    <struts-config>
    ………..
    <controller processorClass="com.ibm.btt.struts.base.BTTRequestProcessor"/>
    …….
    </struts-config>

    The default is RequestProcessor, if you set nothing.

  3. In web.xml , configure tokenProcessor value as follows:
    <init-param>
       <param-name>tokenProcessor</param-name>
       <param-value>com.boc.BOCTokenProcessor</param-value>
    </init-param>

    The default is BTTTokenProcessor, if you set nothing.