forked from crshnburn/CICS-TG-Liberty-Sample
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathserver.xml
More file actions
22 lines (17 loc) · 866 Bytes
/
server.xml
File metadata and controls
22 lines (17 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<server description="CICS TG Liberty sample">
<!-- Enable features -->
<featureManager>
<feature>servlet-3.0</feature>
<feature>jca-1.6</feature>
</featureManager>
<httpEndpoint httpPort="9080" httpsPort="9443" id="defaultHttpEndpoint"/>
<!--The location of the cicseci.rar needs to be updated to the full path-->
<resourceAdapter autoStart="true" id="eciResourceAdapter" location="cicseci.rar"/>
<connectionFactory id="eciTest" jndiName="eis/ECI">
<!--The properties need to be updated to the location of the CICS Transaction Gateway-->
<properties.eciResourceAdapter connectionUrl="tcp://localhost" portNumber="2006"/>
</connectionFactory>
<webApplication id="libertyJCA" location="libertyJCA.war" name="libertyJCA">
<classloader classProviderRef="eciResourceAdapter" />
</webApplication>
</server>