I'm trying to post an image to a web service from the iPhone. I'll post the code first then explain everything I've tried:
NSData *Imagedata;
Imagedata = UIImagePNGRepresentation(imagee);
strSoapMsg = [[NSString alloc] initWithFormat:
@"<?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:soap12=\"http://www.w3.org/2003/05/soap-envelope\">"
"<soap12:Body>"
"<SaveMerchantImageFromIPhone xmlns=\"http://tempuri.org/\">"
"<byteArrayImage>%@</byteArrayImage>"
"<ProfileID>%d</ProfileID>"
"</SaveMerchantImageFromIPhone>"
"</soap12:Body>"
"</soap12:Envelope>", [NSData dataWithData:Imagedata],merchantProfileID];
// strSoapMsg = [[NSString alloc] initWithFormat:@"%@,%d",Imagedata,merchantProfileID];
//---print it to the Debugger Console for verification---
NSLog(@"soapMsg..........%@",strSoapMsg);
NSString *str_url = [ NSString stringWithFormat:@"%@user.asmx",xmlWebservicesUrl];
NSURL *url = [NSURL URLWithString:str_url];
req = [NSMutableURLRequest requestWithURL:url];
//---set the headers---
NSString *msgLength = [NSString stringWithFormat:@"%d",[strSoapMsg length]];
[req addValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[req addValue:@"http://tempuri.org/SaveMerchantImageFromIPhone" forHTTPHeaderField:@"SOAPAction"];
[req addValue:msgLength forHTTPHeaderField:@"Content-Length"];
//---set the HTTP method and body---
[req setHTTPMethod:@"POST"];
[req setHTTPBody: [strSoapMsg dataUsingEncoding:NSUTF8StringEncoding]];
conn = [[NSURLConnection alloc] initWithRequest:req delegate:self];
if (conn)
{
webSaveMerchantImageFromIphone = [[NSMutableData data] retain];
}
I think it fails because the %@
format specifier takes an object. But I am not sure.
You are probably parsing an empty xml as your request is sent asynchronously and you don't wait for the response.
You should use the delegate methods
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
to concatenate the data you receive and-(void)connectionDidFinishLoading:(NSURLConnection *)connection
to start the parser.Have a look at the NSURLConnectionDelegate protocol: https://developer.apple.com/library/mac/#documentation/Foundation/Reference/NSURLConnectionDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intf/NSURLConnectionDelegate