通过 SOAP 将 json 数据发送到 Web 服务

发布于 2024-12-21 07:15:17 字数 185 浏览 1 评论 0原文

我对 SOAP、REST 和 JSON 有点困惑,

我不知道在 objective-C 中实现这一点的步骤和正确方法是什么,

我想通过 SOAP 将 json 数据发送到 Web 服务。

我应该使用 RESTful 或 SOAP。

任何文件或链接将不胜感激。

I am bit confused regarding SOAP and REST and JSON

I do not know what step and what is the right way to implement this in objective-C

I want to send json data to a web-service via SOAP.

I should use RESTful or SOAP.

Any document or link would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往日情怀 2024-12-28 07:15:17

让我根据个人经验给你一些关于这方面的建议。

首先,如果您可以控制 Web 服务,我建议您使用 RESTful 并返回和发送 JSON 数据,因为使用 Objective-C 解析它非常容易。

有一个名为 SBJson 的类库,您可以使用它来解析 Web 服务返回的 JSON 数据。

如果您无法控制 Web 服务将返回和接收的内容,即您没有对 Web 服务进行编程,您仍然可以使用 SBJson 类来处理 JSON 数据,但我建议您找到一个您喜欢使用的 XML 库。

http://www.raywenderlich.com 是 iOS 教程的重要来源,其中包含有关 XML 解析的深入教程,它与 SOAP 一起使用。

SBJSson 库可以在 https://github.com/stig/json-framework/

这些有帮助吗?

Let me give you some advise out of personal experience regarding this.

A few things first, if you are in control of the web service I would recommend going for RESTful and returning and sending JSON data as parsing it using Objective-C is very easy.

There is a class library called SBJson you can use for the parsing of JSON data returned by the web service.

If you are not in control of what the web service will be returning and receiving, i.e. you didn't program the web service you can still use the SBJson classes for JSON data but I would recommend finding a XML library which you are comfortable in using.

http://www.raywenderlich.com is a great source of iOS tutorials with a in depth tutorial on XML parsing, which is used with SOAP.

The SBJSson library can be found at https://github.com/stig/json-framework/

Does these help?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文