ASIHttpRequest 调用 Restful Web 服务?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.