Developer Tools
JDeveloper
After you run the Configure ADF Security wizard with the default ADF Authentication and Authorization option selected in the ADF Security page, you will have:
The Configure ADF Security wizard updates all security-related configuration files and secures all resources in your application. This means that before you run your application again you must define some users and allow them to access the application.
The
web.xml file now specifies form-based authentication and identifies the location of the pages, adding the following code:
<login-config>
<auth-method>FORM</auth-method>
<form-login-config>
<form-login-page>/login.html</form-login-page>
<form-error-page>/error.html</form-error-page>
</form-login-config>
</login-config>
The security-related configuration files display in the Application Resources panel in the Application Navigator:
The wizard-generated login.html and error.html pages are added to the ViewController project.
Copyright © 1997, 2009, Oracle. All rights reserved.