Unable to setup Activiti with ADF

cancel
Showing results for 
Search instead for 
Did you mean: 
yash_patel_c2
Established Member

Unable to setup Activiti with ADF

Jump to solution

Hi everyone, currently I'm exploring the ADF and I'm trying to set up activiti with ADF. Standalone activiti is perfectly working, but not able to setup it with ADF.

When I try to login with the credentials of Activiti, I receive below response..

Here is the proxy.config.json file

{
"/alfresco": {
"target": "http://localhost:8082",
"secure": false,
"changeOrigin": true
},
"/activiti-app": {
"target": "http://localhost:8080",
"secure": false,
"changeOrigin": true
}
}

and here is the login.component.htm file

<adf-login
copyrightText="© 2018 Alfresco Software, Inc. All Rights Reserved."
successRoute="/apps"
>
</adf-login>

Kindly guide me to solve this issue. Thanks in Advance.

1 Solution

Accepted Solutions
eugenio_romano
Alfresco Employee

Re: Unable to setup Activiti with ADF

Jump to solution

Are you using Activiti or APS? ADF is not compatible with the open source version for now

View solution in original post

4 Replies
dvuika
Alfresco Employee

Re: Unable to setup Activiti with ADF

Jump to solution

In the app.config.json file you should have providers set to "BPM" if you need only ACS, for example:

"ecmHost": "http://{hostname}{:port}",
"providers": "ECM",
"authType" : "BASIC",
yash_patel_c2
Established Member

Re: Unable to setup Activiti with ADF

Jump to solution

Hi Denys Vuika, Thanks for the reply.

Here I'm sharing the code snippet from my app.json.config file,

"bpmHost": "http://{hostname}{Smiley Tongueort}",
"providers" : "BPM",
"authType": "BASIC",

I had also tried with "providers" : "ALL" and bpmHost and ecmHost both available at that time, but unfortunately still not working.

eugenio_romano
Alfresco Employee

Re: Unable to setup Activiti with ADF

Jump to solution

Are you using Activiti or APS? ADF is not compatible with the open source version for now

yash_patel_c2
Established Member

Re: Unable to setup Activiti with ADF

Jump to solution

Thanks Eugenio Romano‌ for the prompt reply !