1
如提到的here,使用帶有Web代理的跨域庫時,響應大小預計不應超過200 kb。是否有可能增加這個限制?增加Sharepoint跨域庫中的響應大小限制
我正在嘗試構建一個由SharePoint創建的應用程序。
如提到的here,使用帶有Web代理的跨域庫時,響應大小預計不應超過200 kb。是否有可能增加這個限制?增加Sharepoint跨域庫中的響應大小限制
我正在嘗試構建一個由SharePoint創建的應用程序。
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()