Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在本地开发机器上的 Windows Phone 7 设备上访问 Windows Azure WCF 服务。我已经尝试了我的本地 IP 并关闭了我的防火墙。没有什么帮助。我们有什么很酷的技巧吗?
好的,所以您正尝试使用真正的 Windows Phone 设备访问您的开发机器上的模拟器?官方不支持这,因为模拟器只接受本地连接。但是您可以使用 Windows 中提供的端口转发功能来绕过此限制:
netsh interface portproxy add v4tov4 listenport=8081 connectport=81 connectaddress=127.0.0.1
现在,您应该将设备配置为连接到yourip:8081,而不是让您的 WP7 连接到yourip:81。