-
Bug
-
Resolution: Done
-
Major
-
6.4.2
-
CR1
-
Workaround Exists
-
-
-
jBPM sprint 3
The endpoint /history/variable/
{varId}/value/
{value}always return 404 when querying variable that contains spaces in the value.
The problem is the regex in path variable specification ins the JAX-RS endpoint. It does not allow spaces:
@GET @Path("/variable/{varId: [a-zA-Z0-9-:\\._]+}/value/{value: [a-zA-Z0-9-:\\._]+}") @RolesAllowed({REST_ROLE, REST_PROCESS_RO_ROLE, REST_PROCESS_ROLE}) public Response getVariableInstanceLogsByVariableIdByVariableValue(@PathParam("varId") String variableId, @PathParam("value") String value) {
- causes
-
RHBPMS-4794 History REST endpoints not behaving correctly on WAS
- Verified