Hello Guys I am trying to Upload Image from my iphone Application through my RestFul Wcf Service running in IIS 7.0 remotely on to the file System. But it doesn't Work, As this application include all new technologies I can't figure out where the problem is,
Web.xml File
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="database_string"
connectionString="............................" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<httpRuntime requestValidationMode="2.0" requestPathInvalidCharacters="" />
<pages validateRequest="false" />
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="FileTransferServicesBinding" maxReceivedMessageSize="9223372036854775807"
messageEncoding="Mtom" transferMode="Streamed" sendTimeout="00:10:00"/>
</basicHttpBinding>
</bindings>
<services>
<service behaviorConfiguration="RestBehavior" name="Shadowmeet_Service.UploadPhoto">
<endpoint address="" binding="basicHttpBinding" bindingConfiguration="FileTransferServicesBinding" contract="Shadowmeet_Service.IUploadPhoto">
</endpoint>
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="web">
<webHttp />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="RestBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
WCF Interface
[ServiceContract]
public interface IUploadPhoto
{
[OperationContract]
[WebInvoke(Method = "POST", ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Bare,UriTemplate = "UploadPicture/user_id={user_id}")]
String Upload_photo(string user_id, Stream request);
}
WCF Implementation
public class UploadPhoto : IUploadPhoto
{
public String Upload_photo(string user_id, Stream request)
{
//byte[] buffer = StreamtoByte(request);
// Create Image record to store in fileSystem
Image img = Image.FromStream(request);
String path = @"C:\\new_image.jpg";
img.Save(path,System.Drawing.Imaging.ImageFormat.Jpeg);
return @"Done";
}
}
}
Here is the code from Iphone application
NSString *urlString = @"http://........./UploadPhoto.svc/UploadPicture/user_id=213213";
NSURL *url = [NSURL URLWithString: urlString];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
[request setUseKeychainPersistence:YES];
UIImage * image = [[UIImage imageNamed:@"good_girl.jpg"] autorelease];
NSData *imageData = UIImageJPEGRepresentation(image, 90);
[request setPostBody:imageData];
[request setDelegate:self];
[request setDidFinishSelector:@selector(uploadRequestFinished:)];
[request setDidFailSelector:@selector(uploadRequestFailed:)];
[request startAsynchronous];
