Options for connecting public api with on-premise API
Hi, I have question on connecting my Primary API to Secondary API in on-premise network. Currently, Both the Primary and Secondary API are hosted in on-premise network. I want to host the Primary API on Azure so that it can be publicly accessible to…
Bypassing Easy Auth for a Specific v4 Azure Function Endpoint in Node.js 22
To recreate my exact issue, create 2 new HTTP triggered function endpoints for a node.js 22 Azure Function v4 (latest version). Nothing fancy in the code, you can use the boiler plate code. One is public and the other is private (name them as such).…
My Azure functions app is returning 404 errors although the logs show timers and queue functions working
I have a functions app written in Javascript using the older v3 programming model that was last updated in mid-December. In the last 48 hours I have started getting 404 errors for HTTP function invocations, and even getting a 404 when requesting the root…
Issue with Invocation to Python Services in Dapr
Dear Microsoft Dapr Support Team, I hope this message finds you well. I am encountering an issue when attempting to invoke Python services using Dapr. The following error is appearing: java Copy code code Upon investigating, it seems this error occurs…
Python Application Hosted On Docker(Azure Container Apps) Intergration with App Insights
I have hosted my python application on azure container app . I want to get metrics and logs in azure app insights. How can I achieve that?
Compose block doesn't work with regex url in Azure logic app
I am trying to create an app to automatically send emails from outlook to slack in azure logic app. I am using Get emails block to get emails (need to "get" Body in html, because BodyPreview has limit characters to 255)(diagram attached) It was…
Azure Function App Read-only on functions
How can I create a custom role in Azure that allows users to view Function App code in read-only mode? Currently, users with the built-in Reader role can see the Function App but get an error requiring write permissions when trying to view the actual…
Azure Functions Performance Issue
Hi everyone, We are conducting a POC on azure functions. We are having performance and reliability issues with it. scenario 1: tier: elastic premium p2 scaling burst limit: 10 minimum: 1 hot instance: 1 with 50 concurrency of simple python…
Can't downloade/use Azure functions VSCode Extension
Hey I have an Azure function app that uses http trigger and is being called everyday. It has been called everyday for 4 months without problems, but the last two days I have encountered problems where I can't trigger it through the URL. I have since…
Group multiple functions in a subfolder?
I am learning azure functions and I have successfully built 3 functions. What I want to do is to place them in a subfolder within my project structure, like this: project_root/ ├── functions/ │ ├── func_a/ │ │ ├── __init__.py │ │ └──…
Create Graph API giving bad request
I am trying to create a Group(com.microsoft.graph.models.Group) using Graph API. But it is giving below error. I am using Group's name as value for mailNickname GroupName is following this format. String groupName = String.format(GROUP_NAME_FORMAT,…
Static Web Application throws unspecific error (500) when using ReadableStream
I'm having a Svelte/SvelteKit application that has also some API endpoints delivering data. The application is deployed using swa CLI. Everything is working except on endpoint, where I want to stream data that is asynchronously generated and may take…
How to enable multi-instances of duralbe function app run in parallel
Hi, I have an Azure durable function app in a container. When I create it using az CLI with argument "--plan", it works as I expect (multiple instances can run in parallel if I concurrently call my function mutliple times), but when I create it…
How to use search.in in $filter for APIM
Hello, All, When I try to use in $filter in APIM (via http GET as a query string parameter): search.in(Var, 'Val1, Val2') (I also tried search.in(Var, 'Val1,Val2', ',') with the same result) I get an error: "Invalid token detected in position…
Service bus triggered azure function behaviour
Hi Team, I have scenario where we are sending thousands of messages to Azure service bus topic and then we have 'Service bus topic trigger' azure function. Azure service bus - Standard tier Azure function (Topic trigger) - App service plan Topic…
Blob triggered Azure Function not executed when Blob is uploaded by certain user. The Blob Created Event is matched and delivered as expected.
I have set up an Azure Function that is triggered by Blob Create Events via an Event Subscription. When I upload a file to the container, the Blob Creation Event is published, matched and delivered, also the Function is invoked and the file gets…
Random Instance Errors on Azure Function App (Python) - Elastic Plan
Hi all, After switching the ASP we use for our function app to Elastic Premium, we are having issues with the uptime of our app. I will provide a list of details below and things we checked and tried. Info about the app: It hosts our public facing API …
I get this error: Cannot activate the 'Azure Logic Apps (Standard)' extension because it depends on an unknown 'ms-azuretools.vscode-azurefunctions' extension.
I get this error: Cannot activate the 'Azure Logic Apps (Standard)' extension because it depends on an unknown 'ms-azuretools.vscode-azurefunctions' extension. also sevarl articles reference to the extension but its just not there: fi…
When Deploying Azure function from Visual Studio Code Errors as Encountered an error (ServiceUnavailable) from host runtime.
Hi Experts when using python version 3.11 from visual studio code to deploy Azure function App (Windows 11 os) Encountered an error (ServiceUnavailable) from host runtime. also At times it will display from Azure function App…
Unable to setup Function App to establish SQL connection
Requirement is to automate synchronization of iMIS business objects to SQL Server tables using an Azure Function so that updates occur nightly without manual intervention. For this, we created Function App in Azure with pay-as-you-go subscription and…