Whenever I attempt to call the camunda api from angular, I get:
“Http failure response for http://localhost:5050/engine-rest/{omitted process id number}/xml: 0 Unknown Error”
The call works from postman to return the xml data, and also from chrome.
this.http.get(diagramUrl, { responseType: ‘text’ }).subscribe(res => {
console.log(res);
}, err => {
console.log(err);
});