WSO2/Rabbitmq.如何在发送消息到队列后向客户端发送响应?

mznpcxlj  于 2023-06-23  发布在  RabbitMQ
关注(0)|答案(1)|浏览(111)

是否可以在将消息发送到队列后向客户端发送同步响应?

<proxy name="VssService" startOnLoad="true" transports="http https" xmlns="http://ws.apache.org/ns/synapse">
    <target>
        <inSequence>
            <log description="LOG REQUEST" level="full"/>
            <property name="OUT_ONLY" scope="default" type="STRING" value="true"/>
            <property name="FORCE_SC_ACCEPTED" scope="axis2" type="STRING" value="true"/>
            <send>
               <endpoint key="VssEP"/>
            </send>   
        </inSequence>
        <outSequence/>
        <faultSequence/>
    </target>
</proxy>
yvgpqqbh

yvgpqqbh1#

是的,您可以,在这种情况下,您将不得不实现JMS双通 dojo 景。看看thisthis

相关问题