如上所述here,在将跨域库与Web代理一起使用时,预期的响应大小不应超过200 kb。是否可以增加此限制?
我正在尝试构建一个sharepoint托管的应用程序。
答案 0 :(得分:0)
Here我找到了一个适合我的解决方案。我是内部部门:
$contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$type = $contentService.gettype()
$config = new-object Microsoft.SharePoint.SPWebProxyConfig
$configType = $config.gettype()
$methods = $Type.GetMethods() | where-object {$_.Name -eq "GetChild"}
$gm = $methods[1].MakeGenericMethod($configType)
$realConfig = $gm.Invoke( $contentService , $null)
if ($realConfig -eq $Null)
{
$config.update()
$realConfig = $gm.Invoke( $contentService , $null)
}
$realConfig.MaxResponseSize = 400000 #this is an Integer so up to 2GB
$realConfig.update()