Reputation: 359
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.
Upvotes: 0
Views: 2797
Reputation: 11128
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:
Then click on peek messages as below :
If the message is not sent/failed because of any reason you can check as below:
if the message is in receive mode then you should give session id as correctly as below:
After Clicking on Receive:
Upvotes: 2