05-30-2017 12:26 PM
I'm trying to save a new variable to my process via REST API,
but when I run the POST, the console shows me the following error:
response.body({"message":"Bad request","exception":"Failed to serialize to a RestVariable instance"})
MY CODE:
String name = "variable";
String type = "string";
String value = "value";
//org.activiti.rest.service.api.engine.variable.RestVariable
RestVariable var = new RestVariable();
var.setName(name);
var.setType(type);
var.setValue(value);
//SPRING RESTOPERATION
restOperations.postForObject(http://urlserver:8080/activiti-rest/service/runtime/process-instances/512551/variables, var, String.class);
Regards!
05-30-2017 02:33 PM
update my code for:
List<Map<String, String>> maps = new ArrayList<>();
Map<String, String> map = new HashMap<String, String>();
map.put("name", "variable");
map.put("type", "string");
map.put("value", "value");
maps.add(map);
String json = new Gson().toJson(maps);
this worked!
Regards!
05-30-2017 01:14 PM
Because RestVariable class does not implement Serializable interface.
Activiti/RestVariable.java at master · Activiti/Activiti · GitHub
05-30-2017 02:33 PM
update my code for:
List<Map<String, String>> maps = new ArrayList<>();
Map<String, String> map = new HashMap<String, String>();
map.put("name", "variable");
map.put("type", "string");
map.put("value", "value");
maps.add(map);
String json = new Gson().toJson(maps);
this worked!
Regards!
Explore our Alfresco products with the links below. Use labels to filter content by product module.