Question about Partitions and RESTful Web Services
Posted: Thu Jan 09, 2020 2:15 am
I build a small POC using the REST Api interface.
After promoting the source from partition DEV to partition ACC I get an error.
The error itself is not very surprising.
I guess I can fix it by changing the paths from /getStock to /dev/getStock and /acc/getStock, but that would mean I have to change the API Definition manually every time I promote something.
So my question is: Is there a more elegant solution to handling REST Api's on multiple partitions?
After promoting the source from partition DEV to partition ACC I get an error.
Code: Select all
{ "error":{ "messages":[ "Web alias has been used in multiple configurations." ] } }I guess I can fix it by changing the paths from /getStock to /dev/getStock and /acc/getStock, but that would mean I have to change the API Definition manually every time I promote something.
So my question is: Is there a more elegant solution to handling REST Api's on multiple partitions?