Hy,我有一个音频需要使用网络服务和其他输入发送。在做了一些搜索后,我明白我无法使用xml soap消息发送nsdata,所以我下载了AFHTTPRequest类并在互联网上关注了示例,但它无法正常工作。 这是我正在使用的网络服务:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<addlocation2 xmlns="http://tempuri.org/">
<userid>int</userid>
<name>string</name>
<voicemsg>base64Binary</voicemsg>
</addlocation2>
</soap:Body>
</soap:Envelope>
这是我用来发送数据和其他参数的代码:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"m4a"];
NSData *audio = [NSData dataWithContentsOfFile:filePath];
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
NSString *URLString = @"http://host.com/Websr/Service.asmx?op=addlocation2";//[WebService getAudioURL];
NSDictionary *parameters = @{@"userid": @2,
@"name": @"usertest",
};
manager.requestSerializer = [AFHTTPRequestSerializer serializer];
manager.responseSerializer = [AFHTTPResponseSerializer serializer];
manager.responseSerializer.acceptableContentTypes = [NSSet setWithObjects:@"text/html", @"audio/m4a", nil];
[manager POST:URLString parameters:parameters constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
if (audio) {
[formData appendPartWithFileData:audio name:@"voicemsg" fileName:[NSString stringWithFormat:@"test.m4a"] mimeType:@"audio/m4a"];
}
} success:^(AFHTTPRequestOperation *operation, id responseObject) {
NSLog(@"Success %@", responseObject);
NSLog(@"operation %@", operation.responseString);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"Failure" message:@"Sending Failure" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
NSLog(@"Failure %@, %@", error, operation.responseString);
}];
[self dismissViewControllerAnimated:NO completion:nil];
当应用程序到达包含类AFURLResponseSerialization.h中的数据的if语句时,该应用程序崩溃并出现多余的错误访问:
- (BOOL)validateResponse:(NSHTTPURLResponse *)response
data:(NSData *)data
error:(NSError *)error
{
BOOL responseIsValid = YES;
NSError *validationError = nil;
if (response && [response isKindOfClass:[NSHTTPURLResponse class]]) {
if (self.acceptableContentTypes && ![self.acceptableContentTypes containsObject:[response MIMEType]]) {
NSLog(@"[response URL] %@", [response URL]);
if ([data length] > 0 && [response URL]) {
...}
非常感谢任何建议。谢谢。
答案 0 :(得分:3)
您不需要使用AFHTTPRequest类。您的要求只是通过网络发送base64Binary数据,您的网站服务就是这样。 请按照以下链接,这将是有帮助的。 http://iosdevelopertips.com/core-services/encode-decode-using-base64.html