使用当前服务器/客户端套接字架构迁移移动应用程序
我有一个中央服务器,通过 TCP 套接字提供多个连接。将 WP7 应用程序集成到此架构中并允许其与服务器应用程序通信的最简单方法是什么?
显然,使用套接字连接到服务器应用程序不是一个选项,因为当前版本的 SL for WP 不支持套接字。我看到的唯一其他选项是 Web 服务,它反过来会通过套接字和 WCF 连接到服务器,这是我尚未征服的野兽。
I've a central server serving several connections via TCP sockets. What is the easiest way to integrate a WP7 app into this architecture and thus allowing it to communicate with the server application?
Obviously connecting to the server application with a socket isn't an option since sockets aren't supported in the current version of SL for WP. The only other options I see is web services which in turn would connect to the server via sockets and WCF which is a beast I've yet to conquer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您不熟悉 WCF(我也不熟悉),那么通过 scoket API 提供外观的常规 Web 服务将是解决您的问题的最简单的解决方案。
If you're not familiar with WCF (and neither am I) then a regular web service to provide a facade over your scoket API is going to be the easiest solution to your problem.