As there arent much details in your question, i will give you a general answer.
Here is a code snippet that will help you call IBM RPA bot ( assuming you have necessary libraries set up in your java project ) :
import com.ibm.bpm.integration.runtime.service.ExecutionException;
import com.ibm.bpm.integration.runtime.service.IntegrationService;
import com.ibm.bpm.integration.runtime.service.ServiceFactory;
IntegrationService integrationService = ServiceFactory.getIntegrationService();
try {
String botInputParameter1 = "Value1";
int botInputParameter2 = 123;
integrationService.invoke("RpaBotServiceName", "RpaBotOperationName",
botInputParameter1, botInputParameter2);
} catch (ExecutionException e) {
e.printStackTrace();
}
Hope this helps you get an idea where to solve your issue.
------------------------------
Youssef Sbai Idrissi
Software Engineer
------------------------------
Original Message:
Sent: Wed March 15, 2023 02:56 AM
From: nadal hung
Subject: IBM BPM how to call IBM RPA bot
IBM BPM how to call IBM RPA bot
RPA version is 23
------------------------------
nadal hung
------------------------------
#IBMAdvancedStudies