サーバーに大きなリクエストを送信して大きなデータを取得しようとしています。だから私は Data Service へのバッチ リクエストを使用します。このリクエストの URI は、「hxxp://company/Test.svc/$batch」のようになります。私は.Net 4.0を使用しています
有効な POST リクエストを送信します。
DataServiceRequest[] Request = new DataServiceRequest[]{new DataServiceRequest<TTable>((query).RequestUri)};
try
{
DataServiceResponse dsr = WebService.ExecuteBatch(Request);
foreach (QueryOperationResponse qr in dsr)
{
if (qr.Query.ElementType == typeof(TTable))
{
foreach (TTable item in qr) { list.Add(item); }
}
}
}
そして、エラーメッセージを受け取ります:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
<code></code>
<message xml:lang="ru-RU">An error occurred while processing this request.</message>
<innererror>
<message>Invalid URI: The Uri string is too long.</message>
<type>System.UriFormatException</type>
<stacktrace> at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)
at System.Uri..ctor(String uriString, UriKind uriKind)
at System.Data.Services.RequestUriProcessor.GetAbsoluteUriFromReference(String reference, Uri absoluteServiceUri)
at System.Data.Services.BatchServiceHost..ctor(Uri absoluteServiceUri, BatchStream batchStream, String contentId, String boundary, StreamWriter writer)
at System.Data.Services.DataService`1.BatchDataService.CreateOperationContextFromBatchStream(Uri absoluteServiceUri, BatchStream batchStream, HashSet`1 contentIds, String boundary, StreamWriter writer)
at System.Data.Services.DataService`1.BatchDataService.HandleBatchContent(Stream responseStream)</stacktrace>
</innererror>
</error>
サーバー側の例外のようで、大きな uri を解析しようとすると発生します。この制限を回避するには?
修正済み (2013 年 1 月 28 日 16:00)
IIS 構成:
<?xml version="1.0"?>
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="500000000" maxQueryString="209715000" maxUrl="2000000"></requestLimits>
</requestFiltering>
</security>
<directoryBrowse enabled="true"/>
<httpErrors errorMode="Detailed"/>
<caching enabled="false" enableKernelCache="false"/>
</system.webServer>
<system.web>
<httpRuntime executionTimeout="4800"
maxQueryStringLength="2097150"
maxUrlLength="2097150"
relaxedUrlToFileSystemMapping="true"
maxRequestLength="500000000"
requestValidationMode="4.0"/>
<customErrors mode="Off"/>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
<add assembly="System.Data.Services.Client, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
</assemblies>
</compilation>
</system.web>
</configuration>