我有一个Web服务,允许客户端从数据库中获取查询并在客户端计算机上运行它们,并将结果发布回Web服务。这些结果从数据表到XML解析,然后使用webclient.uploadvalues发送。我可以发送和接收查询/结果,只要它们很小(仅返回数千行),但是当查询返回数十万个结果时,XML字符串变得很大(我现在正在使用的一个尤其是一个工作IS是70MB),Web服务返回404。
我已经在Web.config中为Web服务中增加了MaxlowerContentLength,MaxRequestLength和executionTimeOut。似乎客户端甚至没有尝试将数据推到该错误之前将数据推到Web服务上。有什么方法可以说出什么是真正的问题(XML字符串变量的限制?)?将数据发送到Web服务的代码如下。
Using wc As New WebClient()
Try
Dim nvc As New NameValueCollection
nvc.Add("params", myParameters)
wc.UploadValues(URI, nvc)
Catch ex As WebException
eLog.WriteEntry("Application", My.Application.Info.AssemblyName + " - " + ex.Message)
End Try
End Using
我也尝试了此方法:
Try
Dim client As New HttpClient()
client.Timeout = TimeSpan.FromSeconds(300)
Dim request As New HttpRequestMessage(HttpMethod.Post, URI)
request.Content = New StringContent(myParameters)
Dim response = client.SendAsync(request, HttpCompletionOption.ResponseContentRead)
Catch ex As HttpRequestException
eLog.WriteEntry("Application", My.Application.Info.AssemblyName + " - " + ex.Message)
End Try
6小时后,我随机决定重新安排Web.config中的maxallowedContentLength,并解决了问题。我不知道"安全性"标签的正确定位,但是像这样解决了我的问题:
<system.web>
<compilation debug="true" targetFramework="4.6.1" />
<httpRuntime targetFramework="4.6.1" maxRequestLength="2097152" executionTimeout="3600" />
</system.web>
<system.webServer>
<defaultDocument>
<files>
<clear />
<add value="Home.html" />
</files>
</defaultDocument>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648" />
</requestFiltering>
</security>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers>
</system.webServer>