azure-service-bus-java icon indicating copy to clipboard operation
azure-service-bus-java copied to clipboard

☁️ Java client library for Azure Service Bus

Results 49 azure-service-bus-java issues
Sort by recently updated
recently updated
newest added

I am currently using Spring Boot version 2.1.3.RELEASE with version 7.1.0 of Azure service bus. `implementation group: 'com.azure', name: 'azure-messaging-servicebus', version: '7.1.0'` Simply adding the line above to my build.gradle...

**Attempt 1 :** **Actual** : The receiver/subscriber is getting disposed/closed off after some duration, like : 24hours !! We kept it in the start mode with an expectation that it...

## Actual Behavior 1. Getting the error: " Error occurred while refreshing token that is not retriable. Not scheduling refresh task." 2. ## Expected Behavior 1. No error while refreshing...

## Actual Behavior 1. When I read a message from azure service bus using ServiceBusReceiverClient, I am successfully receiving the message, but when I try to close the connection it...

I see something like the following error while using azure event hub to send event message. But as I see in the azure portal, the metric shows that the event...

We have two subscription clients receiving messages with an interval of 30 seconds. At times, we stop receiving messages for some reason, and the we have to stop both subscription...

question

Currently we are polling Service Bus Queue with a delay of 15 seconds to receive messages. Reducing this delay increases the CPU Utilization drastically. How to setup a listener to...

I use an IMessageSender created by `ClientFactory.createMessageSenderFromConnectionStringBuilder` to feed a queue that I created according to the [samples repository](https://github.com/Azure/azure-service-bus/tree/master/samples/Java). It works well until I simulate a network outage. First, I...

Investigate

Hello, I wonder to know if @ServiceBusQueueTrigger supports Managed Identity Authentication? I have tried the suggested connection string to enable Microsoft Documentation (Endpoint=sb://{{Fully qualified namespace name}}/;Authentication=Managed Identity), then the connection...

## Actual Behavior 1. I am working on azure service bus and using ServiceBusReceiverClient.receiveMessages(int maxMessages, Duration maxWaitTime) method to receive the message from the service bus, my use case is...