Questions tagged [azure-function-app-proxy]

75 questions
9
votes
3 answers

Azure Http Triggers function calls

I would like a Http Trigger function to call another Http Trigger function. Basically, I am trying to access via the URL (HTTP request) the Trigger 1, which that Trigger 1 will call Trigger 2. What I am thinking is to put the fix URL for Trigger 2,…
Justin B.
  • 93
  • 1
  • 1
  • 3
5
votes
2 answers

How to add proxies.json to read only function app?

I have a Function App and deployed functions using Visual Studio, so it became read only and unable to add proxies to read only function app. How can I add proxies to my Function App from Visual Studio?
4
votes
4 answers

Azure function published but not running, "no data available"

I can publish a Azure function from Visual Studio without an error. This funtion is set to run every 4 seconds ("*/4 * * * * *") but it is not running at all. Even if I try to run it manually it do not run and show the following error: Status: 404…
3
votes
1 answer

How to create custom column into azure applicationInsights

My application is Microsoft Azure Function App. Using with HttpTrigger along with Microsoft.Extensions.Logging - ILogger. How to add custom column into Application Insights - Request, trace table. That column to co-relate the application reference…
3
votes
2 answers

How to Upload my local Azure Function App Project to Azure Function Run time?

I have created an Azure Function App project using visual Studio 2017 for getting the API to my personal use, and I have already installed the Azure Function Runtime(Preview) setup. My question is, how can I upload my local project to the Azure…
Ismayil S
  • 223
  • 3
  • 20
3
votes
1 answer

How is the cost for Azure Function proxy calculated?

We have lots of images in Azure Blob Storage (LRS Hot). We calculate around 15 million downloads per month for a total of 5000 GB egress (files are on average 350kB). I can calculate the price for the Blob Storage but the Function proxy is unknown.…
Mathias Rönnlund
  • 4,078
  • 7
  • 43
  • 96
2
votes
1 answer

local.settings.json is not part of "publish" folder and deployment is unsuccessful

I created a Azure function using .net core 2.0 and core tools. It is a HttpTrigger function. I used dotnet restore dotnet publish -c Release to create the publish files. 2 files and 2 folders I can see in my publish folder under…
2
votes
2 answers

Azure Function App Publish Target Missing in Visual Studio

I'm trying to publish an Azure Function to already deployed Azure Function App, which is in my subscription. But Publish target for the Function app is missing. This is a newly created Function and all other existing function has the publish target…
Evan Park
  • 528
  • 1
  • 6
  • 20
2
votes
0 answers

Can I change the Azure Function app url length limitation?

I noticed that if the URL parameter is over 260 characters I get this response: HTTP Error 400. The request URL is invalid. by parameter i mean: http://websiteName/parameter1name/{parameter1value}/parameter2name/{parameter2value} if one of the…
Noy Aharon
  • 21
  • 1
2
votes
2 answers

Azure function - send all requests to the same function

I'm trying to set up Azure function so that all requests are sent to the same function. The proxies.json file is extremely simple: { "$schema": "http://json.schemastore.org/proxies", "proxies": { "Root URI to Redirector Trigger Function":…
Aleks G
  • 56,435
  • 29
  • 168
  • 265
2
votes
1 answer

Setting custom response header with Azure Function in proxies.json

I am trying to add a custom HTTP header to all of my responses of my Azure Functions - lets call it X-Custom. Then I add a proxies.json file like this to my functions project: { "$schema": "http://json.schemastore.org/proxies", "proxies": { …
Nikolaj
  • 23
  • 4
2
votes
1 answer

how to sync local.setting.json in VS and Azure

I m developing azure function from VS. I deploy time to time to Azure and test. My app has many settings in local.settings.json Every time I change on one place have to do manually on every place. Is there a way to automate it or an easy way…
2
votes
1 answer

can't see Azure Function in Function app UI from web portal

I can't see function listed under function app. So ultimately can't see monitor or logs as well. Can upload from VS Can logon to appservice editor and see function listed there. If I try to create new function or access excising it keep…
2
votes
1 answer

Adapting hypermedia links based on environment

I have an on-premise ASP.NET Web API that's querying on-premise data. The plan is for the client web application to call an Azure Function which will deal with authentication (Azure AD B2C) and validating the request before actually forwarding the…
2
votes
2 answers

How to make startup Azure Function

I have a Azure Function like that [FunctionName("Function1")] public static void Run([ServiceBusTrigger("myqueue", AccessRights.Manage, Connection = "AzureWebJobsServiceBus")]string myQueueItem, TraceWriter log) { log.Info($"C#…
1
2 3 4 5