我正在同步的一个字段是Ritch Text blob数据库字段(sql server database)它适用于较小的字段但是如果我将图像添加到Rich Text字段,即使只有110KB之一,服务器返回一个错误400错误请求。以下是我的配置的相关部分,有什么想法吗?
<httpRuntime maxRequestLength="2147483647" />
<behavior name="defaultBehavior" >
<dataContractSerializer maxItemsInObjectGraph="2145483647"/>
</behavior>
<webHttpBinding>
<binding name="higherMessageSize"
maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" transferMode="Streamed">
</binding>
</webHttpBinding>
<service behaviorConfiguration="defaultBehavior" name="syncScope5DN.syncScope5DNSyncService">
<endpoint address="" behaviorConfiguration="higherMessageSize" binding="webHttpBinding" bindingConfiguration="higherMessageSize" contract="Microsoft.Synchronization.Services.IRequestHandler" />
</service>