Using Local IP address In a Mule ESB application

99封情书 提交于 2019-12-10 11:48:01

问题


I've deployed a Mule ESB application which accept as input a GET HTTP request as follow

http://localhost:8088/esb/?id=xxx

when replace the localhost with my local IP adress 192.168.1.2 it doesnt work neither on my machin nor on another one from my lan. I've added a rule in the firewall to allow the port 8088 and it doesn't work either. I've disabled my antivirus and the firewall and no result. could someone help?


回答1:


I have absolutely no problem using this endpoint configuration:

<http:inbound-endpoint
    address="http://192.168.1.68:8088/esb"
    exchange-pattern="request-response" />

Mule (3.4.0) correctly binds to my IP address and the 8088 port.

So please update your question with the config that shows how you've configured your inbound HTTP endpoint.



来源:https://stackoverflow.com/questions/16796003/using-local-ip-address-in-a-mule-esb-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!