cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to setup Activiti with ADF

yash_patel_c2
Star Contributor
Star Contributor

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 ACCEPTED ANSWER

eugenio_romano
Elite Collaborator
Elite Collaborator

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

View answer in original post

4 REPLIES 4

dvuika
Star Collaborator
Star Collaborator

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",

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
Elite Collaborator
Elite Collaborator

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

Thanks Eugenio Romano‌ for the prompt reply !