iphoneafhttpclient

AFHTTPClient does not send complete data


I am sending a wav file using the following code, however, the process stops at

Sent 131072 of 141359 bytes     

So? Is there some problem with the code? Or am i missing something?

NSString *vidURL = [[NSBundle mainBundle] pathForResource:@"M1F1-int24WE-AFsp" ofType:@"wav"];
                NSData *videoData = [NSData dataWithContentsOfURL:[NSURL fileURLWithPath:vidURL]];



                NSURL *url = [NSURL URLWithString:@"http://apps2.mobiiworld.com"];
                AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
                //  NSData *imageData = UIImageJPEGRepresentation([UIImage imageNamed:@"Romantic.jpg"], 0.5);
                NSMutableURLRequest *request = [httpClient multipartFormRequestWithMethod:@"POST" path:@"/staging/krafttesting/upload.php" parameters:nil constructingBodyWithBlock: ^(id <AFMultipartFormData>formData) {
                    [formData appendPartWithFileData:videoData name:@"file" fileName:@"recording.wav" mimeType:@"audio/vnd.wave"];
                }];

                AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
                [operation setUploadProgressBlock:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
                    NSLog(@"Sent %lld of %lld bytes", totalBytesWritten, totalBytesExpectedToWrite);
                }];
                // [httpClient enqueueHTTPRequestOperation:operation];

                [operation  setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {NSLog(@"Success");}
                                                  failure:^(AFHTTPRequestOperation *operation, NSError *error) {


                                                      NSLog(@"error: %@",  operation.responseString);


                                                      NSLog(@"error: %@", error.userInfo);




                                                  }];
                [operation start];

Solution

  • I got the solution. It seems AFHTTPClient works only when ARC is on. I had ARC off, due to which it was not working - Though i had no errors received.