I am trying to work with the activiti API with tomcat and using postman to test my get/post request, but I was not able to get request the data, like show all the tasks, complete a task and other.
Here is what I did
1. Put acitiviti-explorer and activiti-rest inside webapp in tomcat 7.0.42 2. Startup tomcat 3. go to http://localhost:8080/acitiviti-explorer 4. log in as username: kermit, pw: kermit 5. Tasks -> create a couple Tasks like 1. Task1 2. Task2 3. Task3
I'm not sure what your problem is… You're callign both OLD (URL: http://localhost:8080/activiti-rest/service/tasks) and new (runtime/tasks) methods. What information exactly are you NOT getting back?
Trying to get the list of tasks for a particular user at the new REST API, the http://localhost:8080/activiti-rest/service/runtime/tasks, seems to return a FAKE result, because always return the same 100 tasks, independent of the assignee/owner filter.
This result appear not come from database, because i changed db.properties config file, to point to my oracle database and i can't see my tasks created with activiti-explorer for this user, i see the same 100 tasks from before.