Hi All,
I am having a problem with IE not displaying my content within an IFrame - due to IE not trusting the Apex cookies.
This problem was resolved on the Apex forum in 2009 - https://forums.oracle.com/thread/887792
The solution was to set the P3P policy in the web server header response :
For example
1. PHP
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
2. ASP.NET
HttpContext.Current.Response.AddHeader("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");
3. Apex solution
I add this section to httpd.conf (Apache proxy)
*<IfModule mod_headers.c>*
Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"NOI DSP COR NID CUR ADM DEV OUR BUS\""
*</IfModule>*
Now I have the same problem but I am hosted in the cloud.
Here is a page with my content embedded - (Bradford Uni) : test widget - SACU
This works fine on chrome/firefox...
Is there any other way to set P3P header in the database cloud ?
Big thanks
Steve