0

我正在尝试按照本指南使用 ASP.NET 开发我的第一个 REST 服务。我想使用我的 android 和 wp 设备在 localhost 中测试我的服务,而不使用 android 和 WP 模拟器(太慢)。

有没有办法做到这一点?

4

2 回答 2

3

如果您在 IIS 上部署 ASP.NET 应用程序,只要手机连接在同一网络上(例如通过 Wifi),就可以访问这些服务。只需使用服务器的 IP 地址而不是localhost.

于 2013-02-14T13:59:34.617 回答
1

Another idea is to use fiddler's proxy option. (This also assumes you have set up your app in IIS). Check out this article.

This approach is especially useful if you want to test using custom host headers over SSL.

With this approach you can simulate production dns (by altering hosts file on the fiddler host) rather than using IP addresses and machine names from the mobile device.

于 2013-02-14T15:22:09.327 回答