I try to use postman to test how to send message to azure service bus specific subscription in a topic. I use sql filter to filter message, the SQL filter as below:
MsgClass = 'Good'
I input the below message use Json format which include MsgClass { "MsgClass":"Good", "DetailMessage": "DetailMessage,DetailMessage,DetailMessage" }
The post man send message successful to the topic but the message do not go to the subscription which have filter: MsgClass = 'Good',it go to the subscription which do not have any filter. So I am sure the SQL filter is not working.
Great appreciate for any suggestion how to do it by use PostMan.