-
Enhancement
-
Resolution: Done
-
Major
-
7.11.0.Final
-
None
-
3
-
NEW
-
NEW
-
2018 Week 39-41
I have RestWorkItemDefinition:
[
"name" : "Rest",
"parameterValues" : [
"ConnectTimeout" : "60000",
"ReadTimeout" : "60000",
"Method" : "POST,GET",
],
"parameters" : [
"ContentData" : new StringDataType(),
"ContentType" : new StringDataType(),
"Url" : new StringDataType(),
"Method" : new StringDataType(),
"ConnectTimeout" : new IntegerDataType(),
"ReadTimeout" : new IntegerDataType(),
],
"results" : [
"Result" : new ObjectDataType(),
],
"displayName" : "REST",
"icon" : "defaultservicenodeicon.png"
]
want to add to parameterValues next values:
"ContentType": "application/xml;charset=UTF-8,application/json;charset=UTF-8"
but now, JBPM parse that string to 4 values: 'application/xml', 'charset=UTF-8', 'application/json, 'charset=UTF-8''
Can you fix this, please?