-
Notifications
You must be signed in to change notification settings - Fork 5
/
server.xml
25 lines (22 loc) · 1.01 KB
/
server.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?><server description="cics-java-liberty-ejb">
<featureManager>
<feature>cicsts:core-1.0</feature>
<feature>cicsts:security-1.0</feature>
<feature>ejbLite-3.2</feature>
<feature>jaxrs-2.0</feature>
<feature>jsf-2.2</feature>
<feature>ssl-1.0</feature>
</featureManager>
<!-- CICS Bundle Installed Applications -->
<include location="${server.output.dir}/installedApps.xml"/>
<!-- Use SAF for authentication -->
<safRegistry id="saf" />
<application location="${server.config.dir}/apps/com.ibm.cicsdev.ejb.ear" type="ear">
<application-bnd>
<!-- For simplicity of this sample we use the Liberty special subject for all authenticated users. In a real application it would be better to define a SAF EJBROLE -->
<security-role name="Administrator">
<special-subject type="ALL_AUTHENTICATED_USERS"/>
</security-role>
</application-bnd>
</application>
</server>