Connect to localhost from android device

前端 未结 3 1982
栀梦
栀梦 2021-01-16 03:14

i have already search this topic and still don\'t know how to make it work :(
I have a SOAP web service (ASP.NET), and this address (on my localhost) is http://localhos

3条回答
  •  时光取名叫无心
    2021-01-16 03:50

    You may have your web server listening on your loopback interface and not on your network interface. Major signs of this are:

    • Hits on 127.0.0.1 and localhost (from localhost or Android emulator) work
    • Hits on 192.168.xxx.xxx do not work, whether from localhost, LAN, or WAN

    I talk more about diagnosing this and fixing this in an answer here.

提交回复
热议问题