how to login and access rest web console

cancel
Showing results for 
Search instead for 
Did you mean: 
rao_diid
Active Member

how to login and access rest web console

Jump to solution

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 Solution

Accepted Solutions
gdharley
Intermediate

Re: how to login and access rest web console

Jump to solution

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 solution in original post

3 Replies
jearles
Established Member II

Re: how to login and access rest web console

Jump to solution

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
Intermediate

Re: how to login and access rest web console

Jump to solution

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
Active Member

Re: how to login and access rest web console

Jump to solution

Thanks JEarles and Greg.