29 questions
1
vote
1
answer
888
views
How to search different texts in multiple fields in Azure AI/Cognitive Search (Azure.search.documents)?
So, I want to have fields A, B, and C be searchable so that if I look search up some string "potato", it will look for that word in fields A, B, and C.
To do that, I created an index in ...
0
votes
1
answer
283
views
Azure blob API returns sure the value of Authorization header is formed correctly including the signature when uploading file to it
I am trying to use java SDK in order to connect to Azure Blob. On the method create if not exists I constantly get a general error.
StorageCredentials storageCredentials = new ...
0
votes
1
answer
327
views
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 ...
1
vote
2
answers
770
views
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 ...
0
votes
1
answer
556
views
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 ...
2
votes
1
answer
2k
views
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 ...
0
votes
1
answer
170
views
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,...
0
votes
1
answer
315
views
Setting up gradle azurewebapp plugin for springboot deployment
I have a springboot webapp that i want to deploy to Azure. The app is springboot jar. I have been able to use azurewebapp plug in to achieve this but it is using OAUTH2 which limits integrating this ...
0
votes
1
answer
1k
views
How to send a binary message from Azure Function to Azure Service Bus
I used the following code to send some sample binary messages to a service bus from an Azure function, but on the service bus I always receive a message with the content "System.Byte[]" and ...
2
votes
1
answer
348
views
(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 = ...
2
votes
1
answer
1k
views
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 ...
0
votes
1
answer
1k
views
Azure Java functions TimerTrigger to fire on startup
Azure functions with C# provides a way to run the TimerTrigger at starts up time with RunOnStartup parameter as follows.
[FunctionName("TimeTrigger_Startup")]
public async Task Migrations([...
0
votes
1
answer
217
views
Azure IMDS + Java SDK
Im pretty new to the Azure cloud world, so kinldy bare with my question.
I have the following requirements,
Fetch the azure vm name
Start and Stop this application from another application in the ...
0
votes
1
answer
460
views
Function app EventhubTriggered Java, retries and failure
I am currently working in the Azure function app in java. Here is the scenario:
The function app is EventHubTriggered
Function app calls the endpoint (HTTPUrlConnection)
It gets the response back
...
1
vote
0
answers
1k
views
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"
...