Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
123 views

I have an application using Spring Cloud Azure AD for Spring Security integration, and I want to read my application own configured client secret from Azure to get its expiration date. This data can ...
mdrg's user avatar
  • 3,420
2 votes
1 answer
136 views

I am using azure ad sdk in my application. My java version is adoptopenjdk 8. Following are the versions used in my pom.xml <dependency> <groupId>com.microsoft.graph</groupId>...
Avinash Reddy's user avatar
1 vote
1 answer
354 views

I have an azure app with delegated permissions of User.Read.All and GroupMember.Read.All. Following are the permissions of my app with name Azure_AD_Delegated I have used the username and password ...
Avinash Reddy's user avatar
0 votes
0 answers
35 views

I’m working on creating an API to copy a VM image across regions using the Azure SDK for Java. However, I encountered an issue with the com.azure.resourcemanager.compute.models.Image import while ...
Ashutosh Kumar's user avatar
-1 votes
1 answer
115 views

I'm working on a springboot microservice as a gateway through azure storage. This application must just be used to download and upload file on azure storage. Everything working fine, but i'm would ...
Alexandre's user avatar
  • 145
0 votes
1 answer
197 views

In the MS Graph Java SDK 6.1, I am trying to determine the owners of a given application. I have the application ID. I am trying to use this sample code // Fetch the owners of the application List<...
Richard Sand's user avatar
1 vote
1 answer
230 views

Golden Gate for Distributed Applications and Analytics v23.6 OS: oracle linux 8 SDK Dependencies: onelake v12.20.0 hadoop v3.4.0 parquet v1.12.0 Issue I'm trying to replicate a sample trail file ...
Khudoyberdi Rahimov's user avatar
0 votes
1 answer
172 views

I have created Azure blob with an excel file(.xlsx). I want to read the same using Java(Apache-poi) and Azure SDK without downloading it in locally. I can download the blob/file to a temp location and ...
Ashok.N's user avatar
  • 1,401
0 votes
1 answer
120 views

I need to get all the instance ids of azure web app deployed in java. I am testing using WebAppInstanceStatusCollection class but not getting proper method to list down instances. Edit : I tried ...
Rohi_Dev_1.0's user avatar
0 votes
1 answer
820 views

Getting the following exception when using azure. Here is my pom.xml <dependencies> <dependency> <groupId>com.microsoft.graph</groupId> <artifactId>...
Avinash Reddy's user avatar
0 votes
1 answer
156 views

I was going through the Azure User class. And in the User class for the attribute businessPhones i see the comment as follows /** * The Business Phones. * The telephone numbers for the user. NOTE: ...
Avinash Reddy's user avatar
0 votes
2 answers
145 views

I'm trying to connect to a Azure IoTHub via using the device client library. I'm already having a X509-certificate registered at the dps and my private key. As this is going to be an emulator for an ...
Simon's user avatar
  • 90
3 votes
0 answers
120 views

I'm integrating Azure Chat SDK for Android in my project following this guide: https://learn.microsoft.com/en-us/azure/communication-services/tutorials/chat-android-push-notification My issue is that ...
MaaAn13's user avatar
  • 316
0 votes
1 answer
3k views

I have a requirement where I need to generate a PDF file, upload the same to Azure Storage BLOB, construct a link with SAS token using account level key and embed this link in an email sent out to ...
Jacob's user avatar
  • 464
0 votes
1 answer
1k views

I'm connecting the Storage account using a connection string and access keys. For coding, I use the Azure SDK for Java. Now, instead of ConnectionString, I must use managed identity to connect to the ...
OnkarG's user avatar
  • 279
0 votes
1 answer
146 views

I'm fetching file from Azure blob storage with the following code but downloadedData is always empty string. I referred this MS document to read the file from the location. The file is not empty and ...
Akanksha_p's user avatar
  • 1,366
1 vote
1 answer
294 views

My azure ad sdk code to fetch all the users from a tenant is as follows List<User> users = new ArrayList<>(); try { UserCollectionRequestBuilder ...
Avinash Reddy's user avatar
1 vote
1 answer
246 views

I am following this documentation to work with azure data factory. So I am using java to work with azure data factory. And as suggested in the documentation, ScheduleTriggerRecurrence class is used to ...
Onki's user avatar
  • 2,115
1 vote
0 answers
109 views

We have the following web handler which queries some data, process them and update them back into db in the background of the web service with Mono.subscribeOn(). public Mono<ServerResponse>...
Steven Lai's user avatar
0 votes
1 answer
331 views

I'm trying to create a KeyClient object in my code so I can create keys in azure key vault. But my object keeps getting error on service and I could not solve it until now. This is my code: @Override ...
Lucas Penna's user avatar
1 vote
1 answer
385 views

I have a series of KQL queries (Query1, Query2, Query3, Query4) and I'm looking to perform a calculation on their results. Specifically, I want to divide the result of (Query1 + Query2) by (Query3 + ...
lpdevlop's user avatar
1 vote
0 answers
106 views

I have implemented the following code to get the user for a single upn value. In the below code in the searchCriteria i get the value as "[email protected]" and it returns the user object that ...
Avinash Reddy's user avatar
3 votes
1 answer
1k views

In my backend API I want to select or create a database, once my database is selected or created I would like to use ORM to update or create the schemas in the database, but how can I set the jdbc.url ...
Erick's's user avatar
  • 47
1 vote
2 answers
701 views

I am working with the Azure SDK for Java and specifically with blob storage and I am using the SpecializedBlobClientBuilder. My question is around the various retry options: ...
Dfarrelly's user avatar
  • 755
0 votes
1 answer
318 views

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 ...
lpdevlop's user avatar
0 votes
1 answer
279 views

I am working on a Java project and need assistance with creating an Azure Monitor metrics alert programmatically using the Azure Java SDK. I would like to be able to set up an alert based on a ...
lpdevlop's user avatar
1 vote
2 answers
1k views

How can I access Azure key vault in my sprint boot application? What do I need to implement in my code and what kind of permission needed in my subscription? Getting error "Directory permission ...
BPT's user avatar
  • 11
2 votes
0 answers
699 views

I need to get users from a group, i get a group name instead of group id from UI. Is there a java sdk api to get users directly from group through the group name. I have the below code to get the ...
Avinash Reddy's user avatar
1 vote
1 answer
1k views

Is there a way to specify the maximum number of retires to "downloadToFile" method (also to "upload" method) in com.microsoft.azure.storage.blob.CloudBlockBlob? Or do we have to ...
Pasan Kalansooriya's user avatar
0 votes
1 answer
190 views

I am new to this Jenkins and Gradle and I am trying to build a Gradle project which is using java azure SDK libraries and getting below error before allotting the build node which means it is throwing ...
baskar's user avatar
  • 1
0 votes
1 answer
646 views

The code below uses blob storage endpoint, SAS, and names of two different containers (CONTAINER_1_NAME, CONTAINER_2_NAME) to get references of two "CloudBlobContainer" objects (private ...
Pasan Kalansooriya's user avatar
2 votes
3 answers
4k views

I am upgrading the azure sdk for java to version 12.21.1. The spring boot version is 2.1.6. I am using the following dependency in gradle : implementation 'com.azure:azure-storage-blob:12.21.1' . I am ...
Yatharth Mishra's user avatar
0 votes
1 answer
749 views

I am using azure sdk for java v11.0.1 to upload files to blob storage. This error comes sometimes once in a week and it creates an outage for the application : java.util.concurrent.TimeoutException: ...
Yatharth Mishra's user avatar
0 votes
1 answer
302 views

Using the Azure SDK for Java, I have created a container in my Azure storage account. To control ACL for the newly added container, I must now add the service principle. Is there a way to use Java to ...
OnkarG's user avatar
  • 279
0 votes
1 answer
349 views

I am using the Azure SDK for Java and working with Azure Storage Tables. I am trying to update fields in a row and the code I am using is as below TableClient tableClient = getTableClient(); ...
Puneet's user avatar
  • 472
1 vote
1 answer
1k views

I am supposed to get Access token from Azure AD using SDK java ( i have the clientid, clientSecret and tenantId), and send the Access token to the UI. Next this token is sent in the request headers of ...
Avinash Reddy's user avatar
1 vote
1 answer
3k views

I am using the following code to get the token, based on the below code how do we know the token is expired and get a new token try { final ClientSecretCredential clientSecretCredential = ...
Avinash Reddy's user avatar
1 vote
0 answers
501 views

I wanted to understand the internal mechanism of Azure az copy command line utility that is used for data copy. There are many blogs out there having the details about how to use AZ copy and different ...
ShaksM's user avatar
  • 84
0 votes
1 answer
157 views

I programmatically (Azure, Java SDK) create Virtual Machine Scale Set ((Linux OS - Ubuntu) with ".withVirtualMachinePublicIp()" option during the creation. It works OK, I can see the ...
Josh's user avatar
  • 1
1 vote
1 answer
363 views

I have a low power hardware device that experiences frequently internet connection issues. The default DeviceClient tries for 4 minutes (240s) to reconnect to the internet and then closes with the ...
Sorin Penteleiciuc's user avatar
1 vote
1 answer
917 views

are there any options to send/receive from dead letter queue, set dead letter reason and so on using Spring Cloud Stream framework, but not native Azure SDK for Java? Ive tried to use some Spring ...
user18363564's user avatar
1 vote
0 answers
65 views

I am writing test cases for an IaaC project. The use case is like the following: Given I do not have a AKS cluster And I call an api to create a cluster Then I have a cluster up and running In the ...
Anish Nagaraj's user avatar
0 votes
2 answers
278 views

I am setting the TTL on my Cosmos Container to 1 to force the deletion of all items, I then query SELECT VALUE COUNT(1) from c to check that all items are deleted before setting TTL back to its ...
user1843591's user avatar
  • 1,166
2 votes
0 answers
818 views

I want to query Azure CosmosDb documents with SQL API query. These Documents shall be filtered and grouped by specific values. From these groups only the document with a specified max value shall be ...
miracoly's user avatar
  • 133
0 votes
1 answer
907 views

I'm trying to delete all items in a CosmosDB container -- I cannot delete the container. I cannot find an efficient way to do this. I have a related problem where I am trying to select all/read all so ...
user1843591's user avatar
  • 1,166
0 votes
1 answer
756 views

The spring-cloud-azure-starter-servicebus-jms Spring Boot starter allows to use Azure Service Bus via the JMS 1.0 or 2.0 API depending on the configured pricing for Azure Service Bus. This ...
adelinor's user avatar
  • 861
0 votes
1 answer
127 views

I am trying to get instanceview objects(VirtualMachineScaleSetInstanceViewInner) of all Azure's VirtualMachineScaleSets under a Subscription and this requires both ResourceGroup Name and Vmss name ...
Venkat's user avatar
  • 11
0 votes
1 answer
840 views

I'm trying to implement a piece of code in Java using Azure Java SDK that allows me to upload a file (jpg, in mycase) to a Azure container. I have written this, but it fails: String ENDPOINT= "...
Ommadawn's user avatar
  • 2,820
0 votes
1 answer
177 views

I am using the code sample from BlobClientBase.queryWithResponse(BlobQueryOptions queryOptions, Duration timeout, Context context) Method to try to query data from a blob file on Azure Blob Storage. I ...
xxxr's user avatar
  • 1
0 votes
1 answer
638 views

Thanks in advance. I'm trying to access programmatically the costs of each azure subscription to represent it in an app. I used the following code, but it gives this netty error that seems to deal ...
Adrián Blázquez's user avatar