unable to receive message from Service bus queue (Session Enabled) in Logic apps

Amar-Azure-Practice 656 Reputation points
2020-09-23T15:24:38.32+00:00

Hi

I have service bus Queue name('Claims') and session enabled on it, From Azure function we are inserting messages to the Queue('Claims') with session Id.

We have logic app application listening on the Queue with below configuration

Logic app is not picking up the messages from Queue name('Claims').

27391-image.png

Azure Service Bus
Azure Service Bus
An Azure service that provides cloud messaging as a service and hybrid integration.
553 questions
Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
2,873 questions
{count} vote

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 68,751 Reputation points
    2020-09-23T15:37:23.497+00:00

    @Amar-Azure-Practice If your sender application is sending the message to the queue (session enabled) using session ID then your receiver application will only be able to receive the message if the session ID is passed while making the receive call.

    You need to pass your custom session ID (same when you are sending the message to queue) or next available session ID option in the Session id dropdown. In the below screenshot I have used the session as "Next Available".

    27423-image.png

    Hope the issue resolved after updating the session ID from the drop down. If you are still facing the issue please share the exception message when you are running the trigger manually.

    Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.

    1 person found this answer helpful.