android studio无法连接到localhost WCF服务

时间:2016-12-02 06:55:27

标签: java c# android web-services wcf

我使用IIS在localhost中发布了Restful WCF服务。我可以使用网址http://localhost/mobservice/MobSrv.svc

从我系统上的任何浏览器访问此网络服务

getCityList是此服务中的webGet方法,它返回城市列表。我在 Android Studio 中完成了这项服务。但是在我的android程序中显示错误:

  

java.io.FileNotFoundException:http://10.0.2.2/mobservice/MobSrv.svc/getCityList

我的Android代码如下:

String serviceUrl="http://10.0.2.2/mobservice/MobSrv.svc/getCityList";
URL urlToRequest = new URL(serviceUrl);
urlConnection = (HttpURLConnection)
urlToRequest.openConnection();
int statusCode = urlConnection.getResponseCode();
  if (statusCode == HttpURLConnection.HTTP_UNAUTHORIZED) {
      // handle unauthorized (if service requires user login)
  } else if (statusCode != HttpURLConnection.HTTP_OK) {
      // handle any other errors, like 404, 500,..
  }
InputStream in = new BufferedInputStream(urlConnection.getInputStream());

statusCode返回值404, urlConnection.getInputStream()给出异常 java.io.FileNotFoundException ,如上所述。

在Android Studio中启用了ADB集成。

1 个答案:

答案 0 :(得分:1)

使用ipconfig for Windows和ifconfig for Linux查找计算机IP地址。它将显示为IPv4地址。

然后在请求URL中使用该IP地址代替10.0.2.2。

  

http://computer_ip_address/mobservice/MobSrv.svc/getCityList