Azure Service Bus - unable to see the message

1.6k views Asked by At

The message is posted to the service bus from Java code and while checking in Azure portal -> service bus -> Possible to see the incoming and successful request.

I have been trying to see the Azure posted message using 'Service Bus Explorer'.

But not able to see the message though there is no issues in Azure portal -> service bus.

I am suspecting about configuration or access restriction. Since I am new to Azure Service Bus, not able to proceed how to process further.

Any help will be greatly appreciated.

1

There are 1 answers

2
RithwikBojja On

I do agree with @Anand Sowmithiran that,

If that consumer application has received the message and marked it as 'consumed', it will no longer appear in Azure portal.

If the Consumer didn't do that then we can check messages as below process: Firstly, open Service bus then click on Topic as below:

enter image description here

Then click on peek messages as below :

enter image description here

If the message is not sent/failed because of any reason you can check as below:

enter image description here

if the message is in receive mode then you should give session id as correctly as below:

enter image description here

After Clicking on Receive:

enter image description here