Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

Upload pic from MAC using ASIHTTPRequest

saqibjaansaqibjaan Posts: 31Registered Users
I am trying to upload jpg file from my Mac to a PHP website. I am using 3rd party library (ASIHTTPRequest) to upload a file. Here is the code.


-(void) upload
{

NSURL *url = [NSURL URLWithString:

@"http://dashboard3.mobistealth.com:8080/bbUploadFile.php?
type=rest&u=mobistealth-
rest@mobistealth.com&p=9QhDuIZ65TWc&name=saqib"];


ASIFormDataRequest *request = [[[ASIFormDataRequest alloc]
initWithURL:url] autorelease];

[request setPostValue:@"fileName" forKey:@"318833423305784.jpg"];

[request setFile:@"/Users/User/Documents/318833423305784.jpg"
forKey:@"photo"];



[request startSynchronous];

NSError *error = [request error];

if(!error)
{
NSString *response = [request responseString];
NSLog(@"%@", response);
}

int statusCode = [request responseStatusCode];
NSLog(@"%i", statusCode);
}



I get the following output and pic doesn't upload.


2012-08-14 09:03:47.551 screenCapture[300:a0f] Apache Tomcat/7.0.26 - Error report

HTTP Status 400 -


type Status report

message

description The request sent by the client was syntactically incorrect ().


Apache Tomcat/7.0.26


2012-08-14 09:03:47.555 screenCapture[300:a0f] 400
Sign In or Register to comment.