Im trying to upload an image from my ipad application to my web server using a web service. Following is the web service:
<WebMethod()> _
Public Function UploadFiles(ByVal strFileName As String, ByVal byFile As Byte()) As String
Try
Dim appPath As String = HttpContext.Current.Request.ApplicationPath.ToLower
Dim homeDir As String = Server.MapPath(appPath)
If byFile.Length > 0 Then
Dim strFilePath As String = homeDir + "/Images/" + strFileName
Dim fs As FileStream = New FileStream(strFilePath, FileMode.Create, FileAccess.Write)
fs.Write(byFile, 0, byFile.Length)
fs.Close()
Return "Completed"
Else
Return "NoLength"
End If
Catch ex As Exception
Return ex.Message.ToString
End Try
End Function
Im having trouble writing the code at the IPad level to get this firing (I know the web service works because ive got it firing from my silverlight client). Here is the code that I currently have trying to use the :
selectedImage = [self scaleToSize:myImageView.image newSize:CGSizeMake(90, 90)];
NSData *imageData = UIImagePNGRepresentation(selectedImage);
//UPLOAD IMAGE TO SERVER
recordResults = FALSE;
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"<soap:Body>\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"<UploadFiles xmlns=\"http://www.mywebsite.com\">\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"<strFileName>Tester</strFileName>\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"<byFile>" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[NSData dataWithData:imageData]];
[postBody appendData:[@"</byFile>\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"</UploadFiles>\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"</soap:Body>\n" dataUsingEncoding:NSASCIIStringEncoding]];
[postBody appendData:[@"</soap:Envelope>\n" dataUsingEncoding:NSASCIIStringEncoding]];
NSURL *url = [NSURL URLWithString:@"http://mywebsite.com/UploadService.asmx"];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
NSString *msgLength = [NSString stringWithFormat:@"%d", [postBody length]];
[theRequest addValue: @"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[theRequest addValue: @"http://www.mywebsite.com/UploadFiles" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody: postBody];
NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if( theConnection )
{
webData = [[NSMutableData data] retain];
}
else
{
//NSLog(@"theConnection is NULL");
}
Problem is I keep getting error 400 bad request returned. Ive used the NSMutableURLRequest successfully before, but I think the major issue im having is with the image data appending to it.
Any ideas where im going wrong? Or what I should if im totally going down the wrong track?
Thanks