Questions tagged [azure-java-tools]
28 questions
3
votes
1 answer
Is there a way to get the headers data of events (EventHub) using @EventHubTrigger of Azure Functions in Java?
I have an Azure Function implemented with azure-functions-java-library that receives events from one EventHub and I'm using @EventHubTrigger, the problem is that I need the header data from an event but I don't see any way to get this, I have…

javo
- 43
- 7
2
votes
1 answer
getting error "Failed to get version of function(null)" in Intellij while running azure function
I am trying to run azure function in local in intellij.
While I run in local, I get this error in intellij :
when I click on configure, I see that the path is set correctly.
Now, I have tried uninstalling the current azure tools, and installing…

Onki
- 1,879
- 6
- 38
- 58
2
votes
1 answer
(Azure SDK java) How to Enable/Disable each Functions using Java program
I am using AzureResourceManager(java).
I am able to start/stop Functions by following.
FunctionApp app = azureResourceManager.functionApps().getById(id);
app.start();
FunctionApp app =…

Thunderbird
- 21
- 3
2
votes
1 answer
deploy sample springboot app (WebGoat) to Azure app service
New to Azure App Service, following https://learn.microsoft.com/en-us/azure/app-service/quickstart-java?tabs=javase&pivots=platform-linux, I am trying to experiment to deploy WebGoat to Azure App, but unsuccessful.
git clone…

sqr
- 365
- 2
- 12
- 29
1
vote
2 answers
Azure Spring Apps: deployment does not support the API version '2022-09-01-preview'
I trying to create and deploy my small Java Spring application to Azure Spring Apps.
With that I using Intellij Idea with Azure Plugin and/or maven azure-spring-apps-maven-plugin.
With Idea I can't setup deployment coz on create/recieve available…

Likrant
- 21
- 2
1
vote
1 answer
Is there a way to output events with header data to Azure Event Hubs using Azure Functions in Java?
This question asks how to get event header data into the Function and the accepted answer says that there is a way.
How about the other side - is it possible to output events with header data? In the docs I found only how to do it in C#.

lbilger
- 304
- 1
- 8
1
vote
0 answers
Configure Application Insights agent for Java Function Apps
I enabled the Application Insights agent for my Java Function App as described at How to enable distributed tracing for Java Function apps?
XDT_MicrosoftApplicationInsights_Java="1"
ApplicationInsightsAgent_EXTENSION_VERSION="~2"
While it collects…

sschmeck
- 7,233
- 4
- 40
- 67
1
vote
2 answers
Skip "Installing function extensions if needed"
I use the maven-plugin-for-azure-functions to create a Java Function App with a custom Trigger Binding. The custom trigger is created by another .Net project and publishs its artifacts via an Azure Devops Artifacts feed as an universal package.
I…

sschmeck
- 7,233
- 4
- 40
- 67
1
vote
1 answer
Azure Toolkit for Eclipse buttons and "Sign in" not working
Azure Toolkit for Eclipse: v.3.25.0
Eclipse: Eclipse IDE for Enterprise Java Developers
JDK: 16
After I managed to install the package, the buttons are shown in the up menu but none of them seem to work. I tried doing it with a fresh copy of…

IonutDH
- 11
- 1
1
vote
1 answer
Azure Toolkit for Intellij plugin incorrectly shows "No subscriptions" after Azure device logon
I have 2 Azure accounts both have subscription which I can see via portal.azure.com but when I login via the plugin on Intellij it claims I have no subscriptions which is blocking my use of the toolkit.
I'm using Intellij Ultimate 2019.3.5

Ant
- 69
- 1
- 11
1
vote
3 answers
Unable to deploy Spring Boot application in Azure
I am tring to deploy Spring boot application in Azure and I followed exact steps as mentoned in microsoft official document https://learn.microsoft.com/en-us/azure/java/spring-framework/deploy-spring-boot-java-app-with-maven-plugin. But I am getting…

Shashank Hegde
- 35
- 6
0
votes
1 answer
How to Create an Alert Processing Rule using the Azure Monitor - Java SDK
I'm trying to create an Alert Processing Rule using the Azure Monitor SDK in Java, but I'm having trouble finding the right approach. I want to programmatically create an Alert Processing Rule
I have already set up the Azure Management SDK in my…

lpdevlop
- 7
- 4
0
votes
0 answers
Problems with Java Azure cloud functions
I've tried to update my Azure cloud functions to the newest versions and received following error on startup:
[2023-03-16T07:43:24.025Z] Executed 'Functions.legendDataHubUpdated' (Failed, Id=b932d0c6-5f2d-4bb8-aabc-15fs6697f2ba,…

moritz.ad
- 1
- 1
0
votes
1 answer
Is there a way to select a tenant in Azure Toolkit for IntelliJ?
Is there anyway to select a tenant that is not default when I log in via Azure Toolkit for IntelliJ ?
Once I sign in, there seems to be no way to change the tenant. How do I do that ?
It says this has been fixed in a GitHub issue, but provides no…

ng.newbie
- 2,807
- 3
- 23
- 57
0
votes
1 answer
Azurefunctions plugin long azureFunctionsPackage execution
I'm using the com.microsoft.azure.azurefunctions.gradle.plugin in version 1.11.0 in my project and can run it successfully locally when running "gradlew clean azureFunctionsRun".
My issue is, that it takes up to 7m 41sec in the step…

Lesrac
- 65
- 2
- 14