我想通过WSF服务发送大量数据。服务工作,问题是我将大文件(1MB)附加到要发送的信息。
我在Stackoverflow上搜索了这个问题,我发现了这个问题:IIS7 - (413) Request Entity Too Large | uploadReadAheadSize
我在阅读时设置了我的app.config,但它不起作用,我得到了同样的错误。这是我的app.config
<%@ ServiceHost Language="C#" Debug="true"
Service="Rep.RepService, $SharePoint.Project.AssemblyFullName$"
CodeBehind="RepService.svc.cs"
Factory="Microsoft.SharePoint.Client.Services.MultipleBaseAddressWebServiceHostFactory,
Microsoft.SharePoint.Client.ServerRuntime, Version=15.0.0.0, Culture=neutral,
PublicKeyToken=71e9bce111e9429c" %>
这是我的服务:
{{1}}
我忘记了什么?
提前致谢。