mykeul  
                
                  
                    June 27, 2021,  1:12pm
                   
                  1 
               
             
            
              Hi,
I created a userTask.http://localhost:8282/flowable-ui/admin/#/form-definitions.) 
I linked the formKey to the userTask.
I can see the userTask in the admin UI (http://localhost:8282/flowable-ui/admin/#/task/e46a34b3-d746-11eb-b075-34f39ad36c83 ) but when I login to the Task App (http://localhost:8282/flowable-ui/workflow/#/tasks ) I am not able to see any tasks nor any processes.
In the debugger, I see the rest request is issued to:http://localhost:8282/flowable-ui/app/rest/query/tasks 
What am I missing?
Thanks for your help.
Michel
             
            
              
            
           
          
            
            
              Hi Michel,
Is the task assigned to you?
Regards
             
            
              
            
           
          
            
              
                mykeul  
              
                  
                    June 28, 2021,  9:22am
                   
                  3 
               
             
            
              Hi Martin,
As I said, I exposed REST from the engine (spring boot app).http://localhost:8181/process-api/runtime/tasks?start=0&size=3 
But the Task app issues this query: http://localhost:8282/flowable-ui/app/rest/query/tasks 
Thanks again Martin.
             
            
              
            
           
          
            
              
                mykeul  
              
                  
                    June 28, 2021, 11:15am
                   
                  4 
               
             
            
              I found the problem.
spring.datasource.url=jdbc:h2:~/flowable-db/engine-db;AUTO_SERVER=TRUE;AUTO_SERVER_PORT=9093;DB_CLOSE_DELAY=-1
 
However the Flowable engine embedded in my spring boot application use by default a random in memory h2 db and not the same one as the webapp.
Hope it can help others.