Question

I want to integrate salesforce with mule. In Salesforce i am using Outbound message. In outbound Message asking Endpoint URL. but i need integrate with salesforce to mule. so How i can give the Endpoint URL Address. Which Endpoint URL is suitable for connect with Mule. how can i connect and Which Endpoint Component will go to use in mule. how i receive the Outbound message in mule from salesforce. In salesforce i know the outbound message creation. I don't know the Endpoint URL. Normal Salesforce Endpoint URL link to some other Webpage. but here i should need Mule Endpoint URL. How i can give this. Please Suggest it. Thanks.

Was it helpful?

Solution

you need to create a http-endpoint in your mule flow, and specify to which URL it should listen to. example of such endpoint declaration is:

<http:endpoint  name="myEndpoint"  address="http://myExample.info/exampleAddress" exchange-pattern="request-response"/>

update
set the address for endpoint to the available port, so if 80 is not occupied - it's ok to have it for example address="http://localhost:80/exampleAddress/"

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top