Web 服务随机未得到响应
在我的 Monotouch 应用程序中,我使用了一个 Web 服务。该服务是用 VS2010 编写的,运行在 Windows 服务器上,使用 https,负载平衡分布在两个节点上。我的问题是,有时当我在这个 Web 服务的实例上调用一个方法时,它没有得到任何响应,并且仍在等待,直到超时崩溃。这似乎在所有服务方法上随机发生。我的猜测是,它在某种程度上与单点触控网络有关,但我在谷歌搜索方面没有成功。
In my Monotouch application I consume a web service. This service is written in VS2010 running on a windows server using https with load balancing distributed onto two nodes. My problem is that sometimes when I call a method on my instance of this web service it does not get any response and is still waiting till it crashes on timeout. This seems to happen randomly on all of the services methods. My guess is that it is somehow related to monotouch networking but I am not successful with googling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在MonoTouch中使用WebClient类时也遇到了这个问题。我在这里写了博客: http://escoz.com/webclient-reliability-problems- under-monotouch/
当时,我的解决方案是使用MonoTouch中的NSUrlRequest类而不是.NET客户端。
I also had this problem when using the WebClient class in MonoTouch. I blogged about it here: http://escoz.com/webclient-reliability-problems-under-monotouch/
At the time, my solution was to use the NSUrlRequest class in MonoTouch instead of the .NET client.