Assigning run-as Roles
The security-role-assignment
described in "Assigning Roles Using security-role-assignment" can be also be used to map run-as
roles defined in sip.xml. Note, however, that two additional elements in weblogic.xml take precedence over the security-role-assignment
if they are present: run-as-principal-name
and run-as-role-assignment
.
run-as-principal-name
specifies an existing principle in the security realm that is used for all run-as
role assignments. When it is defined within the servlet-descriptor
element of weblogic.xml, run-as-principal-name
takes precedence over any other role assignment elements for run-as
roles.
run-as-role-assignment
specifies an existing role or principal in the security realm that is used for all run-as
role assignments, and is defined within the weblogic-web-app
element.
Example 14-5 shows an example of a configured run-as role in a sip.xml descriptor.
Example 14-5 run-as Roles in sip.xml
... <servlet> <servlet-name>myservlet</servlet-name> <servlet-class>com.mycompany.MyServlet</servlet-class> <run-as> <role-name>weblogic</role-name> </run-as> </servlet> ...
See "weblogic.xml Deployment Descriptor Reference" for more information about individual weblogic.xml descriptor elements. See also "Role Assignment Precedence for SIP Servlet Roles" for a summary of the role mapping precedence for declarative and programmatic security as well as run-as
role mapping.