solace-samples-python icon indicating copy to clipboard operation
solace-samples-python copied to clipboard

[Feature]: request and response pattern

Open sowjanya1117 opened this issue 2 months ago • 1 comments

Feature Description

i'm using this user property to send response to mqtt ios client in mqtt we have responseTopic so how to read the response topic in python side

 .with_property("responseTopic", response_topic)
response_topic = request.get_property("responseTopic")
to set the user property:
builder = (
            self.messaging_service.message_builder()
            .with_correlation_id(correlation_id)
            .with_property("processedBy", "PythonReplier")
            .with_property("responseTopic", response_topic)
        )\

here we are doing trying to use reply(consume) from one topic and then send response to another topic

Use Case

can we use this property for request and response pattern .with_property("responseTopic", response_topic)

Proposed Solution

No response

sowjanya1117 avatar Sep 10 '25 06:09 sowjanya1117