将数据从 iPhone 发布到公开 OData 的服务器
我有一台公开 OData 服务的服务器。 我实际上可以利用 Objective C 的 OData 客户端来获取数据并在 iPhone 上显示。 我想知道从 iPhone 将一些数据发送到服务器的过程是什么。
假设我只需向服务器发送一个简单的名称,我该怎么做?
任何指向提供使用 OData 服务的 iPhone 应用程序示例的 clogs/站点的指针。
问候 希特什五世
I have a server which is exposing OData services.
I can actually make use of OData client for Objective C to get the data and show on the iPhone.
I am wondering what is the process of posting some data into the server from the iPhone.
Assume I have to just send a simple name to the server how would I do that
Any pointers to clogs/sites which provides examples of iPhone apps consuming OData services.
Regards
Hitesh V
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于每个提出这个问题以查找有关 OData 的更多信息的人,这里有一些资源的指针和一个快速待办事项列表:
iPhone 的官方 Odata 库已移至 Github:https://github.com/OData/OData4ObjC/(尽管 Dan 发布的链接仍然有效)。
克隆存储库后,您可以运行 ./odatagen 工具(位于 Frameworks/bin 文件夹中)来创建一对 .h/.m 文件以包含在您的 iOS 应用程序中。
完成此操作后,请查看包含的示例(例如 Netflix 或 ODataSampleApp)以了解其工作原理。
希望这有帮助
To everyone getting to this question to find more info about OData, here's a pointer to some resources and a quick to-do list:
The official Odata Library for iPhone has moved to Github: https://github.com/OData/OData4ObjC/ (although the link posted by Dan remains valid).
Once you clone the repository, you can run the ./odatagen tool (located in the Frameworks/bin folder) to create a pair of .h/.m files to include in your iOS application.
Once you do so, have a look at the included samples (like the Netflix or ODataSampleApp) to have an idea about how it works.
Hope this helps
我以前从未听说过 OData,但稍微谷歌搜索一下,我就找到了 iphone 的 Objective-C OData 客户端,在这里: http://odataobjc.codeplex.com/
I've never heard of OData before, but a little googling finds me an Objective-C OData client for the iphone, here: http://odataobjc.codeplex.com/