使用xml body发送POST请求并使用AFNetworking 3.x接收xml响应

时间:2016-07-26 17:17:20

标签: xml serialization afnetworking

您好我正在尝试使用xml正文发送AFNetworking 3.x发布请求并从服务器接收xml(因为服务器接受xml输入并输出xml)。我已经成功使用JSON但是xml存在问题。

如何修改这些模板以发送xml正文并接收xml响应。 我们应该用什么库来解析xml响应?任何帮助都非常感激。感谢

NSURLSessionConfiguration *configuration = [NSURLSessionConfiguration defaultSessionConfiguration];
AFURLSessionManager *manager = [[AFURLSessionManager alloc] initWithSessionConfiguration:configuration];

NSURL *URL = [NSURL URLWithString:@"http://httpbin.org/get"];
NSURLRequest *request = [NSURLRequest requestWithURL:URL];

NSURLSessionDataTask *dataTask = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse *response, id responseObject, NSError *error) {     
    if (error) {  
        NSLog(@"Error: %@", error);
    } else {     
        NSLog(@"%@ %@", response, responseObject);  
    }   
}];
[dataTask resume];

1 个答案:

答案 0 :(得分:-2)

这是您正在寻找答案的链接。

Try this

H @ ppy c0de !!