I implemented a web service for an Android application. The web service is running on my local host (192.168.1.2). Using the Android emulator I succeeded to connect to web service. The I tried to connect my Android device using debugging mode to web service but it didn't work. So my question is if it is possible to connect an Android device to this web service that is running on my local host (192.168.1.2) without using a real IP ?
|
Well your localhost is 127.0.0.1 (or ::1) and your LAN IP is 192.168.1.2. Each pc/device that are connected under your LAN could reach your webservice on IP 192.168.1.2 Your Android device must be so connected under the same LAN maybe through Wifi connection so it will be able to talk with 192.168.1.2. If you can't connect your Android device under the same LAN eg you have just a 3g connection you need to play with your router/firewall to redirect all incoming traffic (maybe just the http traffic) from your public ip to you private ip (192.168.1.2) Hope this help | |||
|
feedback
|
|
Did you already solve your problem? I also got a problem like you. These are the steps that I already done:
Now you can access your webservice app in your pc from your mobile phone. | |||
|
feedback
|