Configuring the batch processor to invoke transactions

The batch processor can be configured to invoke TCRM transactions, composite TCRMtransactions, or simple DWLAdmintransactions.

By default, the batch processor is configured in the Batch.properties file to run simple TCRM transactions:

ParseAndExecConfiguration.OperationType = All
ParseAndExecConfiguration.requesterName = cusadmin
ParseAndExecConfiguration.requesterLanguage = 100
ParseAndExecConfiguration.Parser = TCRMService
ParseAndExecConfiguration.Constructor = TCRMService
ParseAndExecConfiguration.CompositeTxn = no

Alternately, you can edit the Batch.properties configuration (or override the configuration at runtime) to configure the batch processor to invoke different types of transactions.

To configure the batch processor to run composite TCRM transactions:

ParseAndExecConfiguration.OperationType = All
ParseAndExecConfiguration.requesterName = cusadmin
ParseAndExecConfiguration.requesterLanguage = 100
ParseAndExecConfiguration.CompositeTxn = yes
ParseAndExecConfiguration.CompositeParser = DWLService
ParseAndExecConfiguration.CompositeConstructor = DWLService

To configure the batch processor to run simple DWLAdmin transactions:

ParseAndExecConfiguration.OperationType = All
ParseAndExecConfiguration.requesterName = cusadmin
ParseAndExecConfiguration.requesterLanguage = 100
ParseAndExecConfiguration.TargetApplication = DWLAdminService
ParseAndExecConfiguration.Parser = DWLAdminXMLRequestParser
ParseAndExecConfiguration.Constructor = DWLAdminXMLResponseConstructor
ParseAndExecConfiguration.RequestType=standard
ParseAndExecConfiguration.ResponseType=standard
ParseAndExecConfiguration.CompositeTxn = no
Tip: The batch_extension.properties file contains more examples of configuring the batch processor to invoke different types of transaction.