I have a JavaScript httpTrigger Function on Azure that I want to call in another httpTrigger Function. Both are in the same resource group. I know about Durable Functions and Queue Storage but (according to my limited knowledge) neither is perfect in this scenario because:
- I'd have to change the Function to activityTrigger to use Durable Functions, meaning that I wouldn't be able to use it separately to handle HTTP requests.
- if I used the Function in Queue Storage, it would trigger the other Function every time it's called, which is not what I want.
Edit: I decided to go with Durable Functions after all. To anyone who wants to build a workflow on Microsoft infrastructure, there are typically a few options to choose from, including what was recommended by other users below:
- Durable Functions
- Logic App
- BizTalk Server
- HTTP request