Dear Hepler,
I am using ASIS3request to upload a photo from iphone to Amazon S3 service.
Basically I followed the instruction on documentation.
However I gets the following error.
"The XML you provided was not well-formed or did not validate against our published schema".
For your reference
I attached a code below.
ASIS3Request *request = [ASIS3Request PUTRequestForFile:uniquePath withBucket:@"catcontest" path:@""];
[request setSecretAccessKey:@"..."];
[request setAccessKey:@"....."];
[request start];
if ([request error]) {
NSLog(@"%@",[[request error] localizedDescription]);
}