回答
通行證在隊列中的URL格式:
<mulerequester:request config-ref="Mule_Requester" resource="jms://input?connector=AMQConnector1" doc:name="Request a message from a queue" />
如果我只有一個activemq連接器(
更新了我的答案,包括如何指定連接器。在URL中使用?連接器參數。 –
騾子的配置將是: - <mulerequester:config name="Mule_Requester" doc:name="Mule Requester"/> <jms:activemq-connector name="Active_MQ" brokerURL="tcp://localhost:61616" specification="1.1" doc:name="Active MQ"/> <flow name="QueueRequester" doc:name="QueueRequester"> <http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8081" path="fetch" doc:name="HTTP"/> <mulerequester:request config-ref="Mule_Requester" resource="jms://input" doc:name="Request a message from a queue" /> <logger message="Payload from JMS message: #[payload]" level="WARN" doc:name="Logger"/> </flow>
現在假設有一個JMS隊列命名輸入從我們需要在我們的流中獲取數據的位置,我們點擊了網址:'http://localhost:8081/fetch'。
- 1. Mule請求者 - 無法移動文件
- 2. 如何在mule請求者模塊中使用過濾器?
- 3. 如何在mule XML配置文件中的http:inbound-endpoint中設置請求超時?
- 4. 如何配置MULE Rmi?
- 5. 如何配置Mule CE通過公司代理髮送HTTP請求?
- 6. 當使用mule請求者時,Mule Application沒有被部署文件
- 7. Mule JMS請求響應
- 8. Mule異步請求 - 回覆
- 9. 如何配置容器請求變量
- 10. 如何配置Glassfish以掛起請求?
- 11. 如何配置Apache到代理請求
- 12. mule請求者模塊在cloudhub中不工作
- 13. 如何在Mule Studio中配置Mule屬性編輯器
- 14. json請求的payloadfactory配置
- 15. 配置mule esb中的amqp的多個消費者
- 16. SoapUI IP請求者
- 17. 如何在Mule中的http請求連接器中動態設置完整url
- 18. Mule集羣配置問題
- 19. 禁止Mule ESB阻止一些請求
- 20. 刪除favicon.ico在mule中的請求
- 21. Mule Https請求響應超時
- 22. 如何在Mule ESB的Soap請求中使用選擇模式?
- 23. 如何在Mule ESB中實現定期請求?
- 24. 如何在Mule中接收REST API請求?
- 25. 如何阻止用戶僞造請求?或者如何檢測假請求?
- 26. 如何設置Mule Publisher訂閱者模型
- 27. 如何配置web.config允許任何長度的請求
- 28. Mule Dataweave - 如何設置http.status
- 29. 如何配置LINQ要求
- 30. 如何配置Asp.net Mvc將每個請求重定向到配置頁面?
你見過這個教程嗎? http://fr.slideshare.net/anir37/using-mule-requester-for-jms。告訴我們,如果這有助於你。 – VERYNET