ASIHttpRequest 调用 Restful Web 服务?

发布于 2024-12-01 17:37:35 字数 141 浏览 2 评论 0原文

ASIHttpRequest可以调用Restful Web服务吗?我知道 Restkit 很擅长这一点。 如果没有,有什么简单的方法可以转换吗?

我们可以说ASIHttpRequest擅长调用基于soap的Web服务吗?

感谢您的评论!

Can ASIHttpRequest call Restful web service ? I knew that Restkit is good at it.
If no,any easy way to convert ?

Can we say that ASIHttpRequest is good at calling soap based web service ?

Thanks for your comments !

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

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

发布评论

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

评论(1

缱绻入梦 2024-12-08 17:37:35

ASIHTTPRequest 只是执行 HTTP 请求。不多不少。由于 REST 也只是一个 HTTP 请求,因此您可以将 ASIHTTPRequest 与 Restful Web 服务一起使用。不过,它不会对响应进行任何解析,因此如果响应是 JSON,您仍然需要自己解析它。

您还可以使用 ASIHTTPRequest for SOAP,但您必须自己构建 XML(或使用其他库)并自己解析 XML 响应。对于 SOAP,您可能需要使用 http://sudzc.com/

ASIHTTPRequest simply does a HTTP request. Nothing more, nothing less. Since REST is also just an HTTP request, you can use ASIHTTPRequest just fine with a restful web service. It doesn't do any parsing of the response, though, so if the response is JSON you still have to parse that yourself.

You can also use ASIHTTPRequest for SOAP but you have to construct the XML by yourself (or using some other library) and parse the XML response by yourself as well. For SOAP you may want to use http://sudzc.com/ instead.

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