My setup is as follows (for development purpose only !):
- local Camunda 8.7 Run installation (under Ubuntu in WSL)
- Java Spring Boot application with dependency to spring-boot-starter-camunda-sdk (8.8.0-alpha2-rc1)
- no integration into authentication infrastructure (Keycloak)
Accessing Task List ui and Operate ui from the browser with default credentials works fine.
From the application that part of CamundaClient methods which is routed via gRPC works fine too.
However that part of CamundaClient methods which is routed via http runs into 401 responses.
Confusingly the CamundaClient obviously uses API version v2 for HTTP requests while the Swagger-UI of the Camunda Run engine (http://localhost:8080/swagger-ui/index.html) only provides API version v1.
(Execution of v1-API requests is possible without authentication demand.)
How can I make the whole function set of CamundaClient working in the mentioned developer setup?