iphone中的RESTful web服务

时间:2010-08-11 09:32:43

标签: iphone

我如何在iphone中使用Restful webservice而不是soap?

1 个答案:

答案 0 :(得分:0)

我还建议您先在Stackoverflow上搜索问题的可能答案。但是使用REST基础Web服务的一个具体答案。我强烈推荐ASIHTTPRequest。它们有一种非常简单的方法可以从服务中检索数据。我已经在很多需要访问webservices的应用程序中使用了代码。

NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request startSynchronous];
NSError *error = [request error];
if (!error) {
    NSString *response = [request responseString];
}