Windows Mobile Wi-Fi 适用于 IE,但不适用于我的应用程序 (SocketException)
我一直在尝试将 Wi-Fi 连接添加到我的 Windows Mobile 6.1 .NET CE 3.5 应用程序,但无法弄清楚为什么出现以下 SocketException:
连接尝试失败,因为连接方在一段时间后没有正确响应时间,或建立的连接失败,因为连接的主机未能响应
System.Net.Sockets.Socket.ConnectNoCheck(EndPoint RemoteEP) 在 System.Net.Sockets.Socket.Connect(端点远程EP) 在 System.Net.Connection.doConnect(IPEndPoint ep) 在 System.Net.Connection.connect(对象被忽略) 在 System.Threading.ThreadPool.WorkItem.doWork(Object o) System.Threading.Timer.ring()
出现错误代码 10060 (ConnectionTimedOut)
尽管 IE 具有完美的连接性,但 。 IE 和我的应用程序都可以通过底座和 GPRS 连接正常工作。
有任何想法吗?
I've been trying to add Wi-Fi connectivity to my Windows Mobile 6.1 .NET CE 3.5 application but can't figure out why I get the following SocketException:
A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
at System.Net.Sockets.Socket.ConnectNoCheck(EndPoint remoteEP)
at System.Net.Sockets.Socket.Connect(EndPoint remoteEP)
at System.Net.Connection.doConnect(IPEndPoint ep)
at System.Net.Connection.connect(Object ignored)
at System.Threading.ThreadPool.WorkItem.doWork(Object o)
at System.Threading.Timer.ring()
ErrorCode 10060 (ConnectionTimedOut)
despite IE having perfect connectivity. Both IE and my application work fine over the cradle and GPRS connections.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在代码中连接到与 IE 中相同的服务器/资源。
追溯答案很有趣。
Try connecting to the same server/resource in your code as in IE.
Retroactive answers are fun.