-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
53 changed files
with
552 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<server description="Admin Center"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>adminCenter-1.0</feature> | ||
</featureManager> | ||
|
||
<remoteFileAccess> | ||
<writeDir>${server.config.dir}</writeDir> | ||
</remoteFileAccess> | ||
|
||
<administrator-role> | ||
<user>Fred</user> | ||
</administrator-role> | ||
|
||
</server> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="new server"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>appSecurity-2.0</feature> | ||
<feature>zosSecurity-1.0</feature> | ||
</featureManager> | ||
|
||
<keyStore id="defaultKeyStore" password="Liberty"/> | ||
|
||
<webAppSecurity allowFailOverToBasicAuth="true" /> | ||
|
||
<safRegistry id="saf" /> | ||
<safAuthorization racRouteLog="ASIS" /> | ||
<safCredentials unauthenticatedUser="ZCGUEST" | ||
profilePrefix="ATSZDFLT" /> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="group security"> | ||
|
||
<zosconnect_zosConnectManager | ||
globalInterceptorsRef="interceptorList_g"/> | ||
|
||
<zosconnect_authorizationInterceptor id="auth" | ||
safCacheTimeout="600"/> | ||
|
||
<zosconnect_auditInterceptor id="audit" | ||
apiRequesterSmfVersion="2" | ||
apiProviderSmfVersion="2"/> | ||
|
||
<zosconnect_zosConnectInterceptors id="interceptorList_g" | ||
interceptorRef="audit"/> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<server description="basic security"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>appSecurity-2.0</feature> | ||
</featureManager> | ||
|
||
<keyStore id="defaultKeyStore" password="Liberty"/> | ||
|
||
<webAppSecurity allowFailOverToBasicAuth="true" /> | ||
|
||
<basicRegistry id="basic1" realm="zosConnect"> | ||
<user name="Fred" password="fredpwd" /> | ||
</basicRegistry> | ||
|
||
<authorization-roles id="zos.connect.access.roles"> | ||
<security-role name="zosConnectAccess"> | ||
<user name="Fred"/> | ||
</security-role> | ||
</authorization-roles> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<server description="CICS IPIC connections"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>zosconnect:cics-1.0</feature> | ||
</featureManager> | ||
|
||
<zosconnect_cicsIpicConnection id="cicsConn" host="${CICS_HOST}" | ||
port="${CICS_PORT}" /> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<server description="CICS IPIC connections"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>zosconnect:cics-1.0</feature> | ||
</featureManager> | ||
|
||
<zosconnect_cicsIpicConnection id="cicsConn" host="${CICS_HOST}" | ||
port="${CICS_PORT}" /> | ||
|
||
</server> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="CICS trace"> | ||
|
||
<!-- add cors to allow cross origin access, e.g. when using swagger doc from zOS Connect Enterprise Edition --> | ||
<cors id="defaultCORSConfig" | ||
domain="/" | ||
allowedOrigins="*" | ||
allowedMethods="GET, POST, PUT, DELETE, OPTIONS" | ||
allowedHeaders="Origin, Content-Type, Authorization, Cache-Control, Expires, Pragma" | ||
allowCredentials="true" | ||
maxAge="3600"/> | ||
|
||
</server> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="new server"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>usr:dvsProvider</feature> | ||
<feature>zosLocalAdapters-1.0</feature> | ||
</featureManager> | ||
|
||
<!-- Adapter Details with WOLA Group Name (ZCEEDVM) --> | ||
<zosLocalAdapters wolaName3="NAME3" | ||
wolaName2="NAME2" | ||
wolaGroup="ZCEEDVM"/> | ||
|
||
<!-- DVS Service Details with Register Name (ZCEEDVM) --> | ||
<zosconnect_zosConnectService invokeURI="/dvs" | ||
serviceDescription="" | ||
serviceRef="dvsService" | ||
serviceName="dvsService" | ||
id="zosConnectDvsService"/> | ||
|
||
<usr_dvsService invokeURI="/dvs" | ||
serviceName="DVSS1" | ||
registerName="ZCEEDVM" | ||
connectionFactoryRef="wolaCF" | ||
id="dvsService"/> | ||
|
||
<connectionFactory jndiName="eis/ola" id="wolaCF"> | ||
<properties.ola/> | ||
</connectionFactory> | ||
|
||
<zosconnect_zosConnectService serviceRef="svc1" | ||
serviceAsyncRequestTimeout="600s" | ||
serviceName="dvs1" id="sdef1"/> | ||
|
||
<zosconnect_localAdaptersConnectService | ||
connectionWaitTimeout="7200" | ||
connectionFactoryRef="wolaCF" | ||
serviceName="DVSS1" | ||
registerName="ZCEEDVM" | ||
id="svc1"/> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<server description="Additional Feaures"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>adminCenter-1.0</feature> | ||
<feature>restConnector-2.0</feature> | ||
</featureManager> | ||
|
||
<remoteFileAccess> | ||
<readDir>/var/zcee/includes</readDir> | ||
<readDir>/global/zosconnect/includes</readDir> | ||
<writeDir>${server.config.dir}</writeDir> | ||
</remoteFileAccess> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="new server"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>filemanager:fmProvider-2.0</feature> | ||
</featureManager> | ||
|
||
<FileManager_Connection id="default" | ||
runport="2800" | ||
max_timeout="1800"/> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="group security"> | ||
|
||
<zosconnect_zosConnectManager | ||
globalInterceptorsRef="interceptorList_g" | ||
globalAdminGroup="GMADMIN" | ||
globalInvokeGroup="GMINVOKE"/> | ||
|
||
<zosconnect_authorizationInterceptor id="auth" safCacheTimeout="600"/> | ||
|
||
<zosconnect_auditInterceptor id="audit" | ||
apiRequesterSmfVersion="2" | ||
apiProviderSmfVersion="2"/> | ||
|
||
<zosconnect_zosConnectInterceptors id="interceptorList_g" | ||
interceptorRef="auth"/> | ||
|
||
</server> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<server description="basic security"> | ||
|
||
<httpEndpoint id="defaultHttpEndpoint" | ||
host="${hostName}" | ||
httpPort="${httpPort}" | ||
httpsPort="${httpsPort}" /> | ||
|
||
</server> |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<server description="CICS IPIC connections"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>zosconnect:cicsService-1.0</feature> | ||
</featureManager> | ||
|
||
<zosconnect_cicsIpicConnection id="catalog" | ||
host="wg31.washington.ibm.com" | ||
port="1491"/> | ||
|
||
<zosconnect_cicsIpicConnection id="cscvinc" | ||
host="wg31.washington.ibm.com" | ||
port="1491"/> | ||
|
||
<zosconnect_cicsIpicConnection id="miniloan" | ||
host="wg31.washington.ibm.com" | ||
port="1491"/> | ||
|
||
<zosconnect_cicsIpicConnection id="miniloan1" | ||
host="wg31.washington.ibm.com" | ||
port="1491"/> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<server description="CICS IPIC ID propagation connections"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>zosconnect:cicsService-1.0</feature> | ||
</featureManager> | ||
|
||
<zosconnect_cicsIpicConnection id="miniloan" | ||
host="wg31.washington.ibm.com" | ||
zosConnectNetworkid="MINILOAN" | ||
zosConnectApplid="MINILOAN" | ||
port="1443"/> | ||
|
||
<zosconnect_cicsIpicConnection id="cscvinc" | ||
host="wg31.washington.ibm.com" | ||
zosConnectNetworkid="CSCVINC" | ||
zosConnectApplid="CSCVINC" | ||
port="1453"/> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="ssl security"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>transportSecurity-1.0</feature> | ||
</featureManager> | ||
|
||
<sslDefault sslRef="DefaultSSLSettings" /> | ||
<ssl id="DefaultSSLSettings" | ||
keyStoreRef="CellDefaultKeyStore" | ||
trustStoreRef="CellDefaultKeyStore" /> | ||
<keyStore id="CellDefaultKeyStore" | ||
location="safkeyring:///Liberty.KeyRing" | ||
password="password" type="JCERACFKS" | ||
fileBased="false" readOnly="true" /> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="mutual security"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>transportSecurity-1.0</feature> | ||
</featureManager> | ||
|
||
<sslDefault sslRef="DefaultSSLSettings" | ||
outboundSSLRef="DefaultSSLSettings" /> | ||
|
||
<ssl id="DefaultSSLSettings" | ||
keyStoreRef="CellDefaultKeyStore" | ||
trustStoreRef="CellDefaultKeyStore" | ||
clientAuthenticationSupported="true" | ||
clientAuthentication="false"/> | ||
|
||
<keyStore id="CellDefaultKeyStore" | ||
location="safkeyring:///Liberty.KeyRing" | ||
password="password" type="JCERACFKS" | ||
fileBased="false" readOnly="true" /> | ||
|
||
</server> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<server description="mutual security"> | ||
|
||
<!-- Enable features --> | ||
<featureManager> | ||
<feature>transportSecurity-1.0</feature> | ||
</featureManager> | ||
|
||
<sslDefault sslRef="DefaultSSLSettings" | ||
outboundSSLRef="DefaultSSLSettings" /> | ||
|
||
<ssl id="DefaultSSLSettings" | ||
keyStoreRef="CellDefaultKeyStore" | ||
trustStoreRef="CellDefaultKeyStore" | ||
clientAuthenticationSupported="true" | ||
clientAuthentication="true"/> | ||
|
||
<keyStore id="CellDefaultKeyStore" | ||
location="safkeyring:///Liberty.KeyRing" | ||
password="password" type="JCERACFKS" | ||
fileBased="false" readOnly="true" /> | ||
|
||
</server> |
Oops, something went wrong.