Debugging issues in RemoteRuntimeEngine API by viewing jBPM logs
Issue
- How to debug and look up the
BPMS 6server logs to debug issues inRemoteRuntimeEngineAPI usages? - User needs to look up logs from
BPMS 6server after triggering a jBPM 6 command from their remote Java client code. It will help them in debugging issues further if they face any exception from jBPM engine side. Here is how users are accessing jBPM runtime engine usingRemoteRuntimeEnginefrom the remote Java application.
...
RemoteRestRuntimeEngineFactory remoteRestRuntimeEngineFactory =
RemoteRestRuntimeEngineFactory.newBuilder()
.addDeploymentId("com.sample.test.project:Project1:1.0")
//.addUrl(new URL("http://localhost:8080/business-central"))
.addUrl(new URL("http://localhost:8080/business-central"))
.addUserName("bpmsAdmin")
.addPassword("asadsd@sds223")
.addTimeout(10000)
.build();
RemoteRuntimeEngine remoteRuntimeEngine = remoteRestRuntimeEngineFactory.newRuntimeEngine();
...
- Is there a way to troubleshoot
Remote Java APIrelated issues at theBPMS 6server end by looking at the log files to figure out what could have gone wrong at the server end?
Environment
- Red Hat JBoss BPM Suite (BPMS)
- 6.0.x
Subscriber exclusive content
A Red Hat subscription provides unlimited access to our knowledgebase of over 48,000 articles and solutions.
Welcome! Check out the Getting Started with Red Hat page for quick tours and guides for common tasks.
