here所述,将跨域库与Web代理一起使用时,预期的响应大小不应超过200 kb。是否可以增加此限制?

我正在尝试构建一个由共享点托管的应用程序。

最佳答案

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()

关于javascript - 增加Sharepoint跨域库中的响应大小限制,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30501301/

10-11 07:33