创建移动联系人/消息同步服务器?
我一直在考虑创建一个网络应用程序,可以让用户备份他们的消息和手机联系人,就像诺基亚的 OVI 同步一样。可以部署什么样的技术来实现这一点,所有客户端所需要做的就是在手机上输入同步服务器设置,它将连接到服务器并开始同步。
谢谢
I have been thinking of creating a web application that can enable users to backup their messages and phone contacts, just like Nokia's OVI sync. What kind of technology can one deploy to enable this, all the clients are expected to do is to enter the sync server settings on the phone and it will connect to the server and start the sync.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我首先查看后端的 SyncML 。
I'd start by looking at SyncML on the backend.
请注意,Windows Phone 7 不支持对消息或联系人的 API 访问,因此您将无法创建应用程序来在 WP7 上执行此操作。
您可能还需要注意,不同的平台不会存储相同的联系人信息,因此甚至无法将所有信息同步到所有平台。
您还需要考虑允许用户仅将联系人信息保存到 SIM 卡的设备。在这种情况下,您将拥有更少的联系人数据,并且可能能够保存更少的联系人。
Please note that Windows Phone 7 does not support API access to messages or contacts so you will not be able to create an app to do this on WP7.
You may also want to note that different platforms do not store the same information about contacts and so it will not even be possible to sync all the information to all platforms.
You will also need to consider devices which allow the user to only save contact information to the SIM card. In this scenario you'll have much less contact data and probably the ability to save many fewer contacts.