httpwebrequest BeginGetResponse 回调在 60 秒内触发 WP7
我正在尝试使用网络服务将一些数据获取到 WP7 设备。
我正在使用 HttpWebRequest 对象从我的服务获取数据...在 WP7 模拟器上一切正常,但是当我尝试在 WP7 设备上运行应用程序时,BeginGetResponse 回调会在 1 分/60 秒后触发,响应状态为“未找到”。
但是,如果服务在 60 秒之前返回数据,那么它也可以在 WP7 设备上运行...
我已经使用示例方法创建了一个示例 Web 服务,该方法具有 Thread.Sleep 两分钟,它可以在 WP7 模拟器上运行,但不能在 WP7 设备上运行....
以前有人遇到过这样的问题吗???
请帮帮我。
谢谢, SK
I am trying to fetch some data to WP7 device using a websevice.
I am using HttpWebRequest object to get the data from my service... everything works well on WP7 Emulator, but when i try to run the application on WP7 device BeginGetResponse callback fires after 1 min/60 seconds with response status "Not Found".
But if service returns data before 60 seconds then it works on WP7 device as well....
i have crated a sample web service with a sample method which has Thread.Sleep for two minutes it works on WP7 Emulator but not working on WP7 device....
did anybody faces any issue like this before???
Please help me out.
Thanks,
SK
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用下面的代码来访问服务...相同的代码在 WP7 模拟器上工作,但在 WP7 设备上...
I am using below code to hit the service... same code is working on WP7 Emulator but on WP7 device...