Can anyone provide me some links or examples to upload files to the HTTP server using iphone APIs.

Thanks in Advance, BP

link|improve this question
what have you tried already? Google? The SDK docs? What problems are you having? – Roger Nolan Jun 1 '09 at 21:40
Given that you don't have access to the file system... what files would you be uploading? – mmc Jun 1 '09 at 22:48
3  
@mmc files you created yourself perhaps? you do have access to the filesystem within your sandbox. – Roger Nolan Jun 2 '09 at 5:53
feedback

5 Answers

The code below uses HTTP POST to post NSData to a webserver. You also need minor knowledge of PHP.

NSString *urlString = @"http://yourserver.com/upload.php";
NSString *filename = @"filename";
request= [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
NSString *boundary = @"---------------------------14737809831466499882746641449";
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
NSMutableData *postbody = [NSMutableData data];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"%@.jpg\"\r\n", filename] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[NSData dataWithData:YOUR_NSDATA_HERE]];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:postbody];

NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
NSLog(@"%@", returnString);
link|improve this answer
1  
Brandon, Thanks for your response in the above code i have some questions, 1) Where we are passing upload file path 2) what i need tp pass here YOUR_NSDATA_HERE actually i am having file name called test.txt in this path /Users/abc/Desktop/test.txt can you tell me where should i pass this info using above code ,i executed above code it gives NSInvalidArgumentException. please help pleas.. --BP – BP. Jun 2 '09 at 20:54
1  
You need to convert your text file to NSData. NSData *data = [[NSData alloc] initWithContentsOfFile:path]; "path" is obviously the path to your text file such as NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"image.jpg"]; – Brandon Schlenker Jun 2 '09 at 23:44
Thanks Brandon, i have one question , i have 1 browse button if i choose it should open iphone or ipod files all txt or imgs do we have any kind of API's to open file system . and that files pth i need to add to NSData. i am sorry if i am wrong but please help me please. Thanks in advance. – BP. Jun 3 '09 at 6:15
1  
I tried this out on my own and I keep getting the errors from my webserver about the format of the post message (System.InvalidOperationException: Request format is invalid: multipart/form-data; boundary=---------------------------14737809831466499882746641449) . Does anyone get errors? – Abel Martin Jan 14 '10 at 18:56
2  
This looks nice. I don't see any PHP though. I think you meant HTTP. – MattDiPasquale Aug 6 '10 at 14:07
show 4 more comments
feedback

ASIHTTPRequest is a great wrapper around the network APIs and makes it very easy to upload a file. Here's their example (but you can do this on the iPhone too - we save images to "disk" and later upload them.

ASIFormDataRequest *request = [[[ASIFormDataRequest alloc] initWithURL:url] autorelease];
[request setPostValue:@"Ben" forKey:@"first_name"];
[request setPostValue:@"Copsey" forKey:@"last_name"];
[request setFile:@"/Users/ben/Desktop/ben.jpg" forKey:@"photo"];
link|improve this answer
Thanks man, this was exactly what I was looking for! I was so amazed it was so hard to find something like this. – quano Oct 4 '09 at 16:17
ASI is great we use it as well. Don't forget to start the request (eg: [request startSynchronous]) Source: allseeing-i.com/ASIHTTPRequest/How-to-use#streaming – Deratrius Feb 6 at 10:50
feedback

This is a great wrapper, but when posting to a asp.net web page, two additional post values need to be set:

    ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
    //ADD THESE, BECAUSE ASP.NET is Expecting them for validation
    //Even if they are empty you will be able to post the file
    [request setPostValue:@"" forKey:@"__VIEWSTATE"];
    [request setPostValue:@"" forKey:@"__EVENTVALIDATION"]; 
    ///

    [request setFile:FIleName forKey:@"fileupload_control_Name"];
    [request startSynchronous];
link|improve this answer
feedback

This tutorial will help you upload files to a srver

link|improve this answer
feedback

I have made a lightweight backup method for the Mobile-AppSales app available at github

I wrote about it here http://memention.com/blog/2009/11/22/Lightweight-backup.html

Look for the - (void)startUpload method in ReportManager.m

link|improve this answer
feedback

protected by Community Jun 22 '11 at 13:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.