cancel
Showing results for 
Search instead for 
Did you mean: 

how to login and access rest web console

rao_diid
Champ on-the-rise
Champ on-the-rise

Hi there,

I am using activiti 5.22 with apache tomcat 8.5.12, but when I try to login to activiti rest web console with kermit/kermit or any other default users I always get 404 error. Please could some help/advise how to login and access activiti rest web console.

Thanks,

rao

1 ACCEPTED ANSWER

gdharley
Elite Collaborator
Elite Collaborator

The URL I always like to hit to make sure everything is running is:
 http://<domain>:<port>/activiti-rest/service/management/engine

This will return the version of the engine and verifies all is well with the world.

Greg

View answer in original post

3 REPLIES 3

jearles
Star Contributor
Star Contributor

Pramod,

The 'activiti-rest.war' is not an interactive app. It is simply a set of REST endpoints that when unaltered, references the default installation of 'activiti-explorer.war'. So what you're seeing is normal behavior, simply because you're not hitting a valid endpoint.

Try: http://<domain>:<port>/activiti-rest/service/repository/models

For more valid endpoints, check the REST API section of the User Guide.

Hope this helps,
-JEarles
bp3

gdharley
Elite Collaborator
Elite Collaborator

The URL I always like to hit to make sure everything is running is:
 http://<domain>:<port>/activiti-rest/service/management/engine

This will return the version of the engine and verifies all is well with the world.

Greg

rao_diid
Champ on-the-rise
Champ on-the-rise

Thanks JEarles and Greg.