We want the Bulk Loader Client to use a customized copy of the default Bulk Loader Task. We do not want to use the default bulk loader task.
Is there somewhere in the Bulk Loader Client where you can tell the bulkloader client which bulk loader task it should use?
A custom Bulk Load task for the bulkloader client is not supported. The Bulk Loader Client will not be able to connect to, or use, a customized copy of the Bulk Loader Task. The Bulk Loader always runs the default task.
The customization needs to be done in the imbulkloadclient.properties file and the (custom) task(s) that the feeder process will call. In your custom task(s), like Custom Modify User, for example, you can configure the required attributes and any other task requirement.
The below command references which properties file you wish to use.
imbulkloadclient.bat -c "C:\Program Files (x86)\CA\Identity Manager\Bulk Loader\conf\imbulkloadclient.properties" -f CSV -i "C:\Program Files (x86)\CA\Identity Manager\Bulk Loader\bin\input.csv" -b 2000 -v
"C:\Program Files (x86)\CA\Identity Manager\Bulk Loader\conf\imbulkloadclient.properties"
The above file is where you would configure which tasks you wish to use:
actionToTaskMapping=create.Create User;modify.Modify User;delete.Delete User
For example, you can alter it to:
actionToTaskMapping=create.Custom Create User;modify.Custom Modify User;delete.Custom Delete User