iphone与openerp的连接
问候,
我正在考虑在iPhone中获得一个应用程序来与应用程序服务器建立连接以收集其联系方式,然后将其与我们的通讯录同步。
任何人都可以指导我朝着实现这一目标所需的方向。以及我必须查找的东西。
Greetings,
I am thinking of getting an application in iPhone to establish connection with a application server to collects its contact details and then sync it with our address book.
Anyone could direct me in the direction i have to take to achieve this target. And the things i have to look up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您必须从 iPhone 的 XML-RPC 库开始。 iOS 核心 sdk 中尚未实现这一点。一个很好的起点是从 wordpress 开发的包含 xml-rpc 库的开源应用程序。然后,您可以在该应用程序中使用该方法,调用特定的开启方法。
这是下载 iOS 版 WordPress 的链接:http://ios.wordpress.org/development/
You must, first of all, start with a XML-RPC library for iPhone. That is not implemented yet in the iOS core sdk. A good starting point is the open source application developed from wordpress that contain a xml-rpc library. Then you can play with the method from within this application, calling specific opener methods.
This is the link to download wordpress for iOS: http://ios.wordpress.org/development/
有人正在开发OpenERP的移动客户端,但我不知道是否有专门针对iPhone的计划。
如果您想构建自己的,我建议您查看 OpenERP 开发人员书籍的 网络服务。您可以向服务器发送 XML-RPC 请求来执行常规客户端可以执行的任何操作。 XML-RPC 层基本上是 ORM 方法 的包装器。
Someone is working on a mobile client for OpenERP, but I don't know if there are any plans for iPhone specifically.
If you want to build your own, I suggest you look at the OpenERP developer book's section on web services. You can send XML-RPC requests to the server to do anything the regular client can do. The XML-RPC layer is basically a wrapper around the ORM methods.