"The requested RSS feed could not be displayed. Please verify the settings and url for this feed. If this problem persists, please contact your administrator."
The issue can be resolved by using the following commands:
- #This command will set the disable intranet - calls value to false.
- Add - PSSnapin Microsoft.sharepoint.powershell
- $farm = Get - SPFarm
- $farm.Properties.DisableIntranetCalls = $false
- $farm.Properties.DisableIntranetCallsFromApps = $false
- $farm.Update()
There is a code change in SharePoint 2013 & 2016, SharePoint uses a .NET call to get more information about the address and it failed because our network configuration doesn't allow the DNS resolution of an internet address as well as we are not using the host file entries.
- System.Net.Dns.GetHostAddresses(System.String)
Thus, if DisableIntranetCalls is set to true (default), then use .NET call given above to confirm the DNS. However, if DisableIntranetCalls is set to false, then SharePoint will not make this call and use other code to reach the site.
No comments:
Post a Comment