【问题标题】:Mule Cloud Hub Deployment Error How can i resolved it?Mule Cloud Hub 部署错误我该如何解决?
【发布时间】:2014-01-28 22:16:59
【问题描述】:
我已经完成了 Salesforce 到 JIRA 的流程。它在本地机器上工作正常。当我在云集线器上进行部署时,它不工作它显示错误。我正在使用以下端点 URL。
<http:inbound-endpoint exchange-pattern="one-way" address="http://00.00.000.000:80/JIRAListner" doc:name="HTTP"/>
当我在云集线器上部署时,这不起作用。怎么能解决这个问题。部署后,出现了这种类型的链接。 example.cloudhub.io。在部署时,我可以提供哪种类型的端点 URL。
【问题讨论】:
标签:
salesforce
mule
jira
mule-studio
mule-el
【解决方案1】:
用途:
<http:inbound-endpoint
exchange-pattern="one-way"
address="http://localhost:${http.port}/JIRAListner"
doc:name="HTTP"/>
【讨论】:
-
-
localhost:${http.port}/JIRAListner 无论如何,这对于通用端口号都是正确的,谢谢大卫
【解决方案2】:
我在部署时得到了解决方案,我们不必担心 mule 端点 URL 中的 IP 地址。
http://127.0.0.1:8081/pathname
够了。部署骡子项目后。部署给出一些链接,如
example.cloudhub.in
。我们可以在源应用程序中将此链接与我们的路径名一起使用,这意味着骡子接收数据的位置。示例:
http://example.cloudhub.in/pathname
。