Reputation: 278
I have a pretty basic Mule HTTP endpoint service running on a remote Windows Server. When I run netstat on that box, it shows that that port is listening.
However, when I run portqry from my local box on that same box it shows that the port is NOT LISTENING.
Also, when I run my test harness, it says the connection is refused.
Why does the box say it is listening but when I try to reach that port, it says it is not listening.
I am sure the fix for this is simple but it is eluding me. Please help.
Upvotes: 0
Views: 1796
Reputation: 109
check the mule xml and make sure the http endpoint is inbound and not outbound.
Upvotes: 0
Reputation: 2319
If you are using Mule 3.4.x and using 'localhost' as the host then you should use '0.0.0.0' instead if you need to bind every network interface:
Upvotes: 3