我想将 salesforce 与 mule 集成。在 Salesforce 中,我使用的是出站消息。在出站消息中询问端点 URL。但我需要与销售人员整合到骡子。所以我如何提供端点 URL 地址。哪个 Endpoint URL 适合连接 Mule。我如何连接以及将在 mule 中使用哪个端点组件。我如何从 salesforce 接收 mule 中的出站消息。在 Salesforce,我知道出站消息的创建。我不知道端点 URL。正常 Salesforce 端点 URL 链接到其他网页。但在这里我应该需要 Mule Endpoint URL。我怎么能给这个。请提出建议。谢谢。
问问题
729 次
1 回答
1
你需要在你的 mule 流中创建一个 http-endpoint,并指定它应该监听哪个 URL。这种端点声明的例子是:
<http:endpoint name="myEndpoint" address="http://myExample.info/exampleAddress" exchange-pattern="request-response"/>
更新
将端点的地址设置为可用端口,因此如果 80 未被占用 - 可以使用它,例如 address="http://localhost:80/exampleAddress/"
于 2013-12-25T09:14:43.860 回答