Created
June 16, 2012 20:24
-
-
Save donatasnicequestion/2942436 to your computer and use it in GitHub Desktop.
Oracle ADF frame busting context param in web.xml for the blog http://donatas.nicequestion.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<context-param> | |
<description>Security precaution to prevent clickjacking: bust frames | |
if the ancestor window domain(protocol, host, and port) and the frame | |
domain are different. Another options for this parameter are always and never. | |
</description> | |
<param-name>org.apache.myfaces.trinidad.security.FRAME_BUSTING</param-name> | |
<param-value>never</param-value> | |
</context-param> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment