CrossDomainAccess

Cross-domain access settings

Fields

Name Type Description
AccessPolicy CrossDomainAccessPolicies Required. Cross-domain access policy

Initialization String Format

An instance can be initialized with a string of the following format: AccessPolicy: <policy>

Examples

Creating a new instance initialized from a string:

DECLARE @crossDomainAccess wds.CrossDomainAccess = 'AccessPolicy: Subdomains';

SET @jobConfig.CrossDomainAccess = @crossDomainAccess;

Setting the job CrossDomainAccess from a string:

SET @jobConfig.CrossDomainAccess = 'AccessPolicy: Subdomains';;

CrossDomainAccessPolicies

Cross-domain access policies enumeration.

Values

Name Description
None No subdomain or cross-domain access. Only the main domain is allowed
Subdomains The subdomains of the main domain are allowed (e.g., “example.com”, “sub.example.com)
CrossDomains Allows access to any domain (e.g., “example.com”, “sub.example.com, another.com”)

Please rotate your device to landscape mode

This documentation is specifically designed with a wider layout to provide a better reading experience for code examples, tables, and diagrams.
Rotating your device horizontally ensures you can see everything clearly without excessive scrolling or resizing.

Return to Web Data Source Home