且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将图片从phonegap应用程序上传到WCF服务

更新时间:2022-11-05 12:55:03

Thanks for the help.. I found the issue.. When I set aspNetCompatibilityEnabled="true" in web.config file of WCF service, I got the HttpPostedFile.

should try this

<configuration>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
  </system.serviceModel>
</configuration>

or

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]

Thanks..