Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Symptoms

DataFormWebPart may be blocked from accessing an external URL, and it generates "8scdc" event tags in SharePoint Unified Logging System (ULS) logs. 

Cause

Because of security concerns, DataFormWebPart was changed to support only accessing internal URLs.

Workaround

To work around this issue, you can contact the farm administrator to use PowerShell to add the blocked host name to SPFarm.AllowedSafeDomain.

For example, assume that you find the following message in the ULS logs:

8scdc  http://externalURL url not allowed in ResloveUri, you can contact farm admin to add the host name to SPFarm.AllowedSafeDomain

Open PowerShell, and run the following cmdlets:

Add-PSSnapin Microsoft.SharePoint.PowerShell
$farm=Get-SPFarm
$farm.AllowedSafeDomain.Add(“blocked_externalURL_host_name”)
$farm.update()

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×