Issue Description:
In TMAC , the iframe could not be loaded due to cross domain. TMAC Proxy is using different domain from TMAC UI.The error can be found as below from developer tools(F12)
Resolution:
Step 1:
Campaign Selector UI is hosted from different domain, in this case specify the full url in globalvars.js
Step 2:
From the IIS, for TMAC UI, select the below module HTTP Response Headers
Enter the X-Frame-Options as value="ALLOW-FROM *"
Alternatively, we can the below in Web.config when no IIS access.
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="ALLOW-FROM *" />
</customHeaders>
</httpProtocol>
Issue will be resolved loading the iframe as below.