jpaull
jpaull

Reputation: 278

HTTP Service Mule endpoint shows as not listening

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

Answers (2)

Jake Morgan
Jake Morgan

Reputation: 109

check the mule xml and make sure the http endpoint is inbound and not outbound.

Upvotes: 0

Seba
Seba

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:

http://www.mulesoft.org/documentation/display/current/Mule+ESB+3.4.0+Release+Notes#MuleESB3.4.0ReleaseNotes-localhostBehavior

Upvotes: 3

Related Questions