Questions tagged [azure-java-sdk]

Windows Azure Java SDK provides quick integration support for Java platform with Microsoft's Azure services.

Microsoft has provided the artifact microsoft-windowsazure-api for Java developers wanting to integrate with Azure using a managed Java library instead of coding around the Azure REST API. The Azure Java SDK supports Maven on Windows, Linux, and Mac.

286 questions
0
votes
2 answers

Issue while using com.microsoft.graph.requests.GraphServiceClient with Client credentials provider of azure identity

I'm trying upload and list the files from share point to using Graph Client of Microsoft. I followed the below documentation to do it. Documentation URL https://learn.microsoft.com/en-us/graph/sdks/choose-authentication-providers?tabs=Java Here is…
0
votes
1 answer

Domain Topic and Event Subscription using java sdk

I have seen many examples for creating a domain topic and event subscription using rest API's but I want to create it using the azure java sdk which is already there. any leads would greatly help. thanks
BHARATHWAJ
  • 39
  • 1
  • 10
0
votes
1 answer

which dependency is overriding version of a transitive dependency (Maven)

I'm using the below dependency: com.azure azure-identity 1.4.3 Which requires io.netty » netty-handler version 4.1.72.Final. However, the version is…
Kyle
  • 67
  • 2
  • 10
0
votes
1 answer

How to move file from one file share to another file share in same azure storage account using Java azure sdk libraries

my application read a file from azure file share. Once file processed, I want to move that file to another file share. How can do this using azure storage file share libraries. Both file shares are in same storage account.
VKR
  • 195
  • 4
  • 18
0
votes
1 answer

How to deploy a ARM template at the subscription scope using Azure Java SDK?

I have an ARM template with the "subscription" scope, I can deploy it using the Azure CLI and the command: az deployment sub create How do I use the Azure Java SDK to deploy this template? I have found this command that takes a resource group (or…
iteal
  • 441
  • 7
  • 14
0
votes
1 answer

Basic blob download fails using com.azure.storage.blob package with java.nio.channels.ClosedChannelException in Scala

I am trying to replicate a simple example in Scala from the Azure Storage Blob client library for Java - Version 12.14.2 documentation, but am only able to get java.nio.channels.ClosedChannelException. I've double-checked the target blob ACLs and…
Traber
  • 11
  • 2
0
votes
1 answer

azure sdk java + Azure Kubernetes Cluster + Spring Boot application + System Assigned Managed Identity

Working Scenario: Spring Boot Application + Azure VM + Azure SDK Java + System Assigned Managed Identity + Azure Key Vault Description: Spring boot application is able to retrieve secrets from KeyVault through System Assigned Managed Identity,…
0
votes
1 answer

azure-sdk-for-java eventhubs Partition has been lost

We recently deployed azure event-hub java receiver/listener client by following azure-docs. I truly believe arrays starts with 0, but that has nothing to do with this question. So anyways, I observed the following error raised from processError &…
Ezra
  • 5
  • 3
0
votes
1 answer

Abandoned multi-part uploads to Azure Blob Storage

We are uploading data to Azure Blob Storage using Microsoft's Java client library. First we create a blob for uploading: CloudBlobContainer container = client.getContainerReference(containerName); CloudBlockBlob blob =…
Wheezil
  • 3,157
  • 1
  • 23
  • 36
0
votes
1 answer

Auzre Java SDK equivalent for NamespaceManager.RevokePublisher (Servicebus / EventHub publisher revocation list management)

We are searching for a way to programmatically manage the EventHub publisher revocation list with the Azure Java SDK. The .NET SDK has the NamespaceManager.RevokePublisher method in the ServiceBus namespace, that is actually tailored to EventHub…
0
votes
1 answer

Including Azure Blob storage library causes problems in Spring

I have a spring application which, when I include the latest azure storage blob library: com.azure azure-storage-blob 12.14.0 It changes my responses from…
pennstatephil
  • 1,593
  • 3
  • 22
  • 43
0
votes
1 answer

EventProcessorClient - AmqpRetryOptions options behaviour

Here is our current scenario - Listen to all the partitions on a given event hub and logically process each message based on the content and re-process (until configured no. of times - say 3) the same event if the initial processing fails…
0
votes
1 answer

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 same vm. For example: Lets say we project A and B A…
0
votes
1 answer

Azure Functions - Java CosmosClientBuilder slow on initial connection

we're using Azure Cloud Functions with the Java SDK and connect to the Cosmos DB using the following Java API CosmosClient client = new CosmosClientBuilder() .endpoint("https://my-cosmos-project-xyz.documents.azure.com:443/") …
KeKru
  • 444
  • 3
  • 13
0
votes
1 answer

Java method to get the Sub Directories in Azure Storage Blob

Here is the structure: Root directory with more than one folder-> one of then "foo" foo folder has child folder "foo1" foo1 has various folders/contents Now, I'd need to go to foo1. I was wondering if I should be reading foo and foo1 as a…
Jasmine
  • 135
  • 3
  • 16