英文:
WSO2/Rabbitmq. How to send response to client after sending message to queue?
问题
在将消息发送到队列后,是否可以向客户端发送同步响应?
<proxy name="VssService" startOnLoad="true" transports="http https" xmlns="http://ws.apache.org/ns/synapse">
<target>
<inSequence>
<log description="记录请求" 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>
英文:
Is it possible to send synchronous response to client after sending message to queue?
<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>
答案1
得分: 1
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论