设备上的 Windows Phone WCF EndpointNotFound 异常
我有一个与 WCF 服务通信的 Windows Phone 项目。一切都在模拟器中运行良好,但是当我部署到设备时,我收到一个端点未找到异常,其内部异常为服务器返回错误:未找到。
这是在我正在设置的新开发笔记本电脑上。在旧笔记本电脑上一切正常。
有什么想法吗?
干杯
史蒂夫
I have a windows phone project communicating with a WCF service. All runs fine in the emulator but when I deploy to a device I get an endpoint not found exception with an inner exception of The server returned an error: not found.
This is on a new dev laptop I am setting up. All worked fine on the old laptop.
Any ideas?
Cheers
Steve
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 localhost 作为服务,请将其更改为 Web 服务的 IP。当您在模拟器上运行时,它会理解本地主机,因为它在本地主机上运行,但是当您在手机上运行时,手机具有单独的IP,因此它不再理解本地主机。
If you used the localhost for service change it to ip of the web service. When you run on emulator it understands the localhost because it runs on localhost but when you run on phone the phone has separate ip so it dose not understand localhost anymore.