I successfully set up a GAE dev server on my computer using Eclipse which is now accessible at :8889. But this server is only accessible from my computer. I can't access it from my android phone's browser and other computer (which is connected to the same network). The browser would give "could not connect" error on trying.
I tried netstat -an and found
Local Address Foreign Address State
<myIP>:8889 0.0.0.0 Listening
I gathered through searching through internet that this is how it should be if you want other computers to access your server. But still other computers can't access my server.
Any idea how to solve this?