Search code examples
salesforcemulejiramule-studiomule-el

Mule Cloud Hub Deployment Error How can i resolved it?


I have done flow Salesforce to JIRA. Its Working fine in Local machine. When i have deployment on cloud hub its not working Its show the error. The following end point URL i am using.

<http:inbound-endpoint exchange-pattern="one-way" address="http://00.00.000.000:80/JIRAListner" doc:name="HTTP"/>

This is not working when i am deploy on cloud hub. How can resolve this problem. After deployment this type of link came. example.cloudhub.io. At deployement time which type of endpoint URL i can give.


Solution

  • Use:

    <http:inbound-endpoint
          exchange-pattern="one-way"
          address="http://localhost:${http.port}/JIRAListner"
          doc:name="HTTP"/>