I have the following call of a bookmark in one of my M3 H5 SDK solutions:
this.formService.executeBookmark(bookmark).subscribe((res) => {
console.log(res);
resolve(res);
}, (res) => {
console.log(res);
reject(res);
});
It works perfect at launch during development in Visual Studio Code and localhost, when I work at a OnPrem customer.
BUT: When I work at a CE customer where localhost is started via /ODIN_DEV_TENANT - nothing happens at all.
Is there anything, that needs to be set up for calling executeBookmark during development using local host?
Any hints are very welcome - thx.