I have a RAP application that is running on a certain port (8181). I can access my application from local ip: 192.168.0.230 but I can't access my application from my provider's link.

My router port is forwarded...

How can I configure my RAP application to listen to 0.0.0.0 interface?

P.S: I am sure that there is no problem in the router

Thank you in advance...

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

This is not something you can configure in RAP, but in your servlet container. The servlet container is the one that opens network sockets. The default configuration is usually to listen to all interfaces.

Besides, if you can access your application over an 192.168.* ip, this means that your servlet container actually listens to this interface, otherwise you could only access it on 127.0.0.1 (localhost). So it seems to be a networking problem.

link|improve this answer
I will check that again. Thank you! – Alex Feb 13 at 14:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.