Questions tagged [camunda-spin]

12 questions
1
vote
1 answer

Manage BPMN processes without Camunda Cockpit?

I am looking for a way to control the processes from the Camunda engine without using the cockpit or REST API.There should probably be a dependency jar file for this. The process logic is written in the BPMN file, but the control of the processes…
1
vote
1 answer

How can assign Camunda task automaticly?

Is there any way to assign Camunda tasks to users round robin? Or any automatic pattern?
0
votes
0 answers

get spin object value from Camunda history variable-instances Rest API

I am using a serviceTask, to make a Rest API from camunda. it has variables like URL, headers, payload, method and other things. all these variables are Inline script varaibles. for URL, headers, method we storing string values. for payload we are…
ayyappa maddi
  • 854
  • 3
  • 10
  • 18
0
votes
1 answer

Camunda REST Api usage for starting async BPMN Processe

We are using camunda subsystem in Wildfly environment. So we have a deployment for this camunda/wildfly - which runs in a pod and connects to MYSQL for DB. There will be another application which reads events and based on that calls REST Api of…
Lucia
  • 791
  • 1
  • 8
  • 17
0
votes
1 answer

Pass variables to different processes using call activity in Camunda

How to pass data from one Process to another in code .I am using Spring Boot in Java code.
Hello
  • 57
  • 5
0
votes
0 answers

Camunda Object Deserialisation

I am setting LoanObj1 (simple pojo with Just STrings) and LoanObj2(complex pojo with List and Maps) using belong code and set it in the excution.setVariable ObjectValue objectValue = Variables.objectValue(object) …
0
votes
1 answer

Camunda experssion access to extensionElements

I am new in camunda and I want to write a expression and want access to extensionElements like processInstaceId and formKey. how can I do this? please guide me.
Amir133
  • 2,372
  • 2
  • 18
  • 34
0
votes
1 answer

Halt the workflow and return the response to Controller

Create Order triggers the Rest End point and starts the workflow (Its a TASK ). CreateOrderController Problem is CreateOrderController is always returning Success.I want to return ResponseEntity.ok("Not Success "); as shown in 2nd image and stop…
Hello
  • 57
  • 5
0
votes
1 answer

Camunda dependent class as a separate Service Task

I have below requiremnt, http://localhost:8080/order/1 will be called.Workflow will start I will validate the request.We have a separate Java class written for this. Return The response "Hello World" or Error messages if validation failed in second…
Hello
  • 57
  • 5
0
votes
2 answers

define expression in camunda

I have a process that has a custom model, similar to the following model(get by calling http://localhost:8080/engine-rest/task/{id}/variables/): { "Title": { "type": "String", "value": "aaa", "valueInfo": { …
Amir133
  • 2,372
  • 2
  • 18
  • 34
0
votes
1 answer

Camunda: Test whether JSON array contains an element

I would like a conditional flow to depend on whether a JSON attribute (containing a JSON array of strings) contains a specific element. The following expression works if the element is present, but throws an exception if it is not: …
Rasmus Faber
  • 48,631
  • 24
  • 141
  • 189
-1
votes
1 answer

Does camunda have rest api for authentication

Is there rest api to use for login and logout in camunda rest api. I want to create stand alone front end for camunda. The problem is how can i authnticate a user via rest api of camunda engin ???