cicsdev / cics-java-liberty-restapp

Sample JAX-RS RESTful web application for Liberty that links to a CICS® COBOL program
https://www.redbooks.ibm.com/redbooks.nsf/RedbookAbstracts/crse0300.html
Apache License 2.0
7 stars 7 forks source link

Context Root Not Found #9

Closed netskink closed 3 days ago

netskink commented 1 week ago

My setup

I am using the gradle method to build. ie:

$ gradle clean build

The war file is build/libs using file name cics-java-liberty-restapp-0.1.0.war.

According to the section on building a war file, it specified to modify the ~/U31CIHBH/wlp/usr/servers/defaultServer/server.xml to have either:

         <feature>wab-1.0</feature>
+        <feature>jaxrs-2.0</feature>
         <feature>cicsts:security-1.0</feature>

or

         <feature>wab-1.0</feature>
+        <feature>jaxrs-1.1</feature>
         <feature>cicsts:security-1.0</feature>

based upon JEE version. Not knowing which version is used, I tried both. Both failed. My IBM JDK is 17.

I placed the war file in the ~/U31CIHBH/wlp/usr/servers/defaultServer/dropins folder. I noticed the jvm modified the ~/U31CIHBH/wlp/usr/servers/defaultServer/apps/expanded folder to have the war file there.

In WLPOUT log in sysview in SDSF mode, I have the following messages relative to the sample app:

DFHWLP  : .INFO    . SRVE0250I: Web Module cics-java-liberty-restapp-0.1.0 has been bound to default_host.                                                      
DFHWLP  : .AUDIT   . CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/                          
DFHWLP  : .INFO    . SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-restapp-0.1.0                          
DFHWLP  : .INFO    . SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.                            
DFHWLP  : .AUDIT   . CWWKZ0003I: The application cics-java-liberty-restapp-0.1.0 updated in 0.434 seconds.                                                      
DFHWLP  : .INFO    . CWWKE0703I: .com.ibm.cics.wlp.link.impl.connector. .ECBListener. @Info : static initializer() - Liberty server is configured to bypass Java
DFHWLP  : .AUDIT   . CWWKF0015I: The server has the following interim fixes active in the runtime: PH59781,PH59146,PH60149,PH60146. For a full listing of instal
DFHWLP  : .AUDIT   . CWWKF1037I: The server added the .ejbLite-3.2, jaxrs-2.0, jaxrsClient-2.0, jca-1.7, mdb-3.2. features to the existing feature set.         
DFHWLP  : .AUDIT   . CWWKF0012I: The server installed the following features: .appSecurity-2.0, blueprint-1.0, cicsts:core-1.0, cicsts:defaultApp-1.0, cicsts:de
DFHWLP  : .AUDIT   . CWWKF0013I: The server removed the following features: .ejbLite-3.1, jaxrs-1.1, jca-1.6, mdb-3.1..                                         
DFHWLP  : .AUDIT   . J2CA7001I: Resource adapter com.ibm.cics.wlp.program.link.connector installed in 0.684 seconds.                                            
DFHWLP  : .AUDIT   . CWWKF0008I: Feature update completed in 6.903 seconds.                                                                                     

I don't have any experience with bundles at this point. It was mentioned as an optional step so I did not attempt those sections of the readme.md.

URL TESTING

URL 1

Using this url: http://ca31.lvn.broadcom.net:16019/com.ibm.cicsdev.restapp/rest/cicsinfo/

output

webpage says "Context Root Not Found"

URL 2

Using a variant of what is reported in WLPOUT:

DFHWLP : .AUDIT . CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/ I modified the URL as:

URL 3

Using this url: http://ca31.lvn.broadcom.net:16019/cics-java-liberty-restapp-0.1.0/rest/cicsinfo

File not found /rest/cicsinfo

Using this url: ca31.lvn.broadcom.net:16019/cics-java-liberty-restapp-0.1.0

File not found /

URL 4

Using this url: http://ca31.lvn.broadcom.net:16019/cics-java-liberty-restapp-0.1.0/cicsinfo

File not found /cicsinfo

netskink commented 1 week ago

Here is the server.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<server description="CICS Liberty sample configuration">
    <!-- Enable features -->
    <featureManager>
        <feature>cicsts:core-1.0</feature>
        <feature>cicsts:defaultApp-1.0</feature>
        <feature>jsp-2.3</feature>
        <feature>wab-1.0</feature>
        <feature>jaxrs-2.0</feature>
        <feature>cicsts:security-1.0</feature>

        <!-- JFD Added for cicsdev README.md instructions -->
        <feature>cicsts:link-1.0</feature>
    </featureManager>

    <!-- Default HTTP End Point -->
    <httpEndpoint host="*" httpPort="16019" id="defaultHttpEndpoint"/>

    <!-- The following configuration controls how often server.xml
         is scanned for updates. The default is every 500ms which may
         cause excessive I/O and CPU cost on z/OS.
         The values shown below reduce the overhead while still
         providing a relatively timely detection of new applications
         that have been installed/removed via a CICS Bundle
         (WAR bundlepart). If you use CICS bundles to install Web
         Applications (WAR files) do not disable the polling.
    -->
    <config monitorInterval="5s" updateTrigger="polled"/>

    <!-- Further scanning is performed to detect application updates or
         addition/removal of applications to the dropins directory. If
         you are using CICS Bundles as the vehicle for Application 
         deployment you should disable the dropins directory as shown.
         Further I/O and CPU reduction can be achieved by disabling
         the application scan. To effect changes to your applications
         while the server is still running, you should disable and
         re-enable the CICS bundle that contains the Web application.
         The pollingRate is only applicable when the updateTrigger is
         set to the 'polled' value.
         Consult the WebSphere Application Server Liberty Profile
         documentation for further information on these parameters.
    -->
    <!-- JFD the cicsdev README.md says to reduce z/FS overhead by 
         reducing config and app polling with the following change:
         updateTrigger="disabled" 
         dropins="dropins"
         dropinsEnabled="false" 
         pollingRate="5s"
    -->
    <applicationMonitor dropins="dropins" dropinsEnabled="true" pollingRate="5s" updateTrigger="polled"/>

    <!-- By default, the cdi-1.2 feature scans all application archives.
         The cdi-1.2 feature can increase startup time substantially 
         and have the most effect on larger applications. Implicit 
         archive scanning for annotations can be disabled by setting 
         enableImplicitBeanArchives value to false. This setting skips
         the scanning of archives unless they contain a beans.xml.
         Even if not explicitly coded, the cdi-1.2 feature might be 
         enabled through other features, such as the javaee-7.0 
         convenience feature.
    -->
    <cdi12 enableImplicitBeanArchives="false"/>
    <safRegistry enableFailover="false" id="saf"/>
    <dataSource id="defaultCICSDataSource" jndiName="jdbc/defaultCICSDataSource" transactional="false">
        <jdbcDriver libraryRef="defaultCICSDb2Library"/>
        <properties.db2.jcc driverType="2"/>
        <connectionManager agedTimeout="0"/>
    </dataSource>
    <library id="defaultCICSDb2Library">
        <fileset dir="/C/DB2/DB2D10/usr/lpp/db2d10/jdbc/classes" includes="db2jcc4.jar db2jcc_license_cisuz.jar"/>
        <fileset dir="/C/DB2/DB2D10/usr/lpp/db2d10/jdbc/lib" includes="libdb2jcct2zos4_64.so"/>
    </library>
    <include id="cics_auto" location="${server.output.dir}/installedApps.xml" onConflict="IGNORE"/>
    <executor coreThreads="6" id="allowCICSconfigure" maxThreads="15"/>
</server>
netskink commented 1 week ago

Here is the messages.log

********************************************************************************
product = CICS LIBERTY 5.6.0, WAS FOR Z/OS 24.0.0.3 (wlp-1.0.87.cl240320240311-1901)
wlp.install.dir = /C/CICS/CTS560/usr/lpp/cicsts/cicssys.cts56/wlp/
server.config.dir = /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/
java.home = /usr/lpp/java/J17.0_64
java.version = 17.0.10
java.runtime = IBM Semeru Runtime Certified Edition for z/OS (17.0.10+7)
os = z/OS (03.01.00; s390x) (en_US)
process = 50661515@USILCA31
Classpath = /usr/lpp/cicsts/cts56/lib/com.ibm.cics.common.jar:/usr/lpp/cicsts/cts56/lib/com.ibm.cics.jvmserver.spi.jar:/usr/lpp/cicsts/cts56/lib/dfjrouter.jar:/usr/lpp/cicsts/cts56/lib/com.ibm.cics.router.wlp.jar:/usr/lpp/cicsts/cts56/wlp/bin/tools/ws-server.jar:/usr/lpp/cicsts/cts56/wlp/lib/org.eclipse.osgi_3.18.600.jar:
Java Library path = /usr/lpp/java/J17.0_64/lib/default:/usr/lpp/java/J17.0_64/lib:/usr/lpp/java/J17.0_64/lib/default:/usr/lpp/cicsts/cts56/lib:/usr/lpp/java/J17.0_64/bin/j9vm:/usr/lpp/java/J17.0_64/lib:/usr/lpp/java/J17.0_64/lib/server:/usr/lpp/java/J17.0_64/lib/compressedrefs:/usr/lpp/java/J17.0_64/lib/j9vm:/z/jd895801/dlls/:/C/DB2/DB2D10/usr/lpp/db2d10/jdbc/lib
********************************************************************************
[10/8/24, 11:24:13:789 EDT] 0000001b com.ibm.ws.kernel.launch.internal.FrameworkManager           A CWWKE0001I: The server defaultServer has been launched.
[10/8/24, 11:24:13:838 EDT] 0000001b com.ibm.ws.kernel.launch.internal.FrameworkManager           I CWWKE0108I: The product extension cicsts was programmatically enabled. The product identifier of the product extension is cicsts. The product install location of the product extension is /usr/lpp/cicsts/cts56/etc/wlp/extensions/cicsts.
[10/8/24, 11:24:15:921 EDT] 0000002c LogService-11-com.ibm.ws.org.apache.felix.scr                I CWWKE0703I: bundle com.ibm.ws.org.apache.felix.scr:1.0.87.cl240320240311-1901 (11) Starting with globalExtender setting: true   
[10/8/24, 11:24:15:929 EDT] 0000002c LogService-11-com.ibm.ws.org.apache.felix.scr                I CWWKE0703I: bundle com.ibm.ws.org.apache.felix.scr:1.0.87.cl240320240311-1901 (11)  Version = 1.0.87.cl240320240311-1901   
[10/8/24, 11:24:15:998 EDT] 00000029 com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 11:24:16:041 EDT] 00000029 com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 11:24:16:091 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0125I: This server requested a REGION size of 0KB. The below-the-line storage limit is 7MB and the above-the-line storage limit is 1047MB.
[10/8/24, 11:24:16:094 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0126I: MEMLIMIT=ffffffff000. MEMLIMIT CONFIGURATION SOURCE=USI.
[10/8/24, 11:24:16:099 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0101I: The angel process is not available.  No authorized services will be loaded.  The reason code is 4.
[10/8/24, 11:24:16:140 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group KERNEL is not available.
[10/8/24, 11:24:16:141 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group LOCALCOM is not available.
[10/8/24, 11:24:16:142 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group PRODMGR is not available.
[10/8/24, 11:24:16:143 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group SAFCRED is not available.
[10/8/24, 11:24:16:144 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group TXRRS is not available.
[10/8/24, 11:24:16:145 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group WOLA is not available.
[10/8/24, 11:24:16:146 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group ZOSAIO is not available.
[10/8/24, 11:24:16:146 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group ZOSDUMP is not available.
[10/8/24, 11:24:16:147 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group ZOSWLM is not available.
[10/8/24, 11:24:16:148 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group CLIENT.WOLA is not available.
[10/8/24, 11:24:16:158 EDT] 0000002c com.ibm.ws.zos.registration.internal.ProductRegistrationImpl I CWWKB0108I: IBM CORP product CICS LIBERTY version 5.6.0 successfully registered with z/OS.
[10/8/24, 11:24:16:160 EDT] 0000002c com.ibm.ws.zos.registration.internal.ProductManager          I CWWKB0113I: The number of successfully registered products with z/OS is 1. These products will deregister from z/OS when the address space terminates.
[10/8/24, 11:24:16:165 EDT] 0000002c com.ibm.ws.zos.core.internal.CoreBundleActivator             I CWWKB0121I: The server process UMASK value is set to 0007.
[10/8/24, 11:24:16:349 EDT] 0000001b com.ibm.ws.kernel.launch.internal.FrameworkManager           I CWWKE0002I: The kernel started after 2.559 seconds
[10/8/24, 11:24:17:152 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0007I: Feature update started.
[10/8/24, 11:24:17:430 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            E CWWKF0042E: A feature definition cannot be found for the jaxrs-1.0 feature.  Try running the command, bin/installUtility install jaxrs-1.0, to install the feature. Alternatively, you can run the command, bin/installUtility install defaultServer, to install all features that are referenced by this configuration.
[10/8/24, 11:24:21:909 EDT] 00000028 LogService-102-com.ibm.cics.osgi.impl                        I CWWKE0703I: [com.ibm.cics.osgi.impl] [CICSMainClassServiceHandler] @Info : processHeader() - Registered 'CICS-MainClass' service for class name 'com.ibm.cics.server.internal.ThreadJoiner' with alias 'ThreadJoiner'.   
[10/8/24, 11:24:22:825 EDT] 00000028 com.ibm.ws.security.ready.internal.SecurityReadyServiceImpl  I CWWKS0007I: The security service is starting...
[10/8/24, 11:24:23:299 EDT] 0000002b com.ibm.ws.app.manager.internal.monitor.DropinMonitor        A CWWKZ0058I: Monitoring dropins for applications.
[10/8/24, 11:24:23:592 EDT] 00000029 com.ibm.ws.cache.ServerCache                                 I DYNA1001I: WebSphere Dynamic Cache instance named baseCache initialized successfully.
[10/8/24, 11:24:23:596 EDT] 00000029 com.ibm.ws.cache.ServerCache                                 I DYNA1071I: The cache provider default is being used.
[10/8/24, 11:24:23:597 EDT] 00000029 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 11:24:23:599 EDT] 0000002c ontainer.security.feature.internal.FeatureAuthorizationTable I CWWKS9120I: Authorization roles with id="com.ibm.cics.wlp.defaultapp" have been successfully processed.
[10/8/24, 11:24:23:772 EDT] 00000028 LogService-106-com.ibm.cics.wlp.jta                          I CWWKE0703I: [com.ibm.cics.wlp.jta.impl] [CICSJTAIntegration] @Info : activate() - CICS WLP JTA integration is ENABLED   
[10/8/24, 11:24:23:848 EDT] 00000031 com.ibm.ws.ssl.config.WSKeyStore                             I CWPKI0819I: The default keystore is not created because a password is not configured on the <keyStore id="defaultKeyStore"/> element, and the 'keystore_password' environment variable is not set. 
[10/8/24, 11:24:23:935 EDT] 00000028 com.ibm.ws.security.registry.saf.internal.SAFRegistry        I CWWKS2937I: Server initialization is in progress and SAF authorized services are currently unavailable. Look for a subsequent CWWKS2938I message on the availability of SAF authorized services. The server.xml file contains the safRegistry element with the enableFailover attribute set to false. This setting prevents failover to unauthorized UNIX System Services if SAF authorized services remain unavailable.
[10/8/24, 11:24:23:940 EDT] 00000052 com.ibm.ws.security.token.ltpa.internal.LTPAKeyCreateTask    I CWWKS4105I: LTPA configuration is ready after 0.066 seconds.
[10/8/24, 11:24:23:948 EDT] 00000028 ibm.ws.security.authentication.internal.jaas.JAASServiceImpl I CWWKS1123I: The collective authentication plugin with class name NullCollectiveAuthenticationPlugin has been activated. 
[10/8/24, 11:24:24:403 EDT] 00000028 com.ibm.ws.security.ready.internal.SecurityReadyServiceImpl  I CWWKS0008I: The security service is ready.
[10/8/24, 11:24:24:772 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=com.ibm.ws.LocalTransaction.LocalTransactionCurrent), (objectClass=javax.transaction.TransactionManager)]
[10/8/24, 11:24:24:806 EDT] 00000045 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.org.apache.aries.application.resolver.obr.1.0.1/1.1.87.cl240320240311-1901 is waiting for dependencies [(objectClass=org.apache.aries.application.management.spi.runtime.LocalPlatform)]
[10/8/24, 11:24:24:849 EDT] 00000028 gService-92-com.ibm.ws.org.apache.geronimo.osgi.registry.1.1 I CWWKE0703I: SPI-Provider Manifest header found in bundle: com.ibm.ws.xlxp.1.5.3   
[10/8/24, 11:24:25:116 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=javax.transaction.TransactionManager)]
[10/8/24, 11:24:25:199 EDT] 00000028 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0010I: Performing recovery processing for local WebSphere server (defaultServer).
[10/8/24, 11:24:25:421 EDT] 00000028 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0012I: All persistent services have been directed to perform recovery processing for this WebSphere server (defaultServer).
[10/8/24, 11:24:25:421 EDT] 00000059 com.ibm.tx.jta.impl.RecoveryManager                          I WTRN0135I: Transaction service recovering no transactions.
[10/8/24, 11:24:25:726 EDT] 0000004d om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl I J2CA7018I: Installing resource adapter com.ibm.cics.wlp.program.link.connector.
[10/8/24, 11:24:25:856 EDT] 0000004d com.ibm.ws.session.WASSessionCore                            I SESN8501I: The session manager did not find a persistent storage location; HttpSession objects will be stored in the local application server's memory.
[10/8/24, 11:24:26:025 EDT] 00000050 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 11:24:26:027 EDT] 00000050 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 11:24:26:029 EDT] 00000050 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 11:24:26:111 EDT] 0000004f com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 11:24:26:117 EDT] 0000004f com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 11:24:26:139 EDT] 0000004f com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 11:24:26:547 EDT] 0000004d LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl.connector] [ECBListener] @Info : static initializer() - Liberty server is configured to bypass Java Subject creation on Link-to-Liberty operations   
[10/8/24, 11:24:26:551 EDT] 0000004d om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7001I: Resource adapter com.ibm.cics.wlp.program.link.connector installed in 0.824 seconds.
[10/8/24, 11:24:26:628 EDT] 00000050 com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-restapp-0.1.0.
[10/8/24, 11:24:26:630 EDT] 0000004f com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-link-1.0.0.
[10/8/24, 11:24:26:642 EDT] 00000055 com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0016I: Starting server configuration update.
[10/8/24, 11:24:26:649 EDT] 00000050 bm.ws.app.manager.war.internal.WARDeployedAppInfoFactoryImpl I CWWKZ0133I: The cics-java-liberty-restapp-0.1.0 application at the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/dropins/cics-java-liberty-restapp-0.1.0.war location is being expanded to the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/apps/expanded/cics-java-liberty-restapp-0.1.0.war directory.
[10/8/24, 11:24:26:651 EDT] 0000004f bm.ws.app.manager.war.internal.WARDeployedAppInfoFactoryImpl I CWWKZ0133I: The cics-java-liberty-link-1.0.0 application at the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/dropins/cics-java-liberty-link-1.0.0.war location is being expanded to the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/apps/expanded/cics-java-liberty-link-1.0.0.war directory.
[10/8/24, 11:24:26:657 EDT] 00000055 com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 11:24:26:681 EDT] 00000055 com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 11:24:26:714 EDT] 00000055 com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0018I: The server configuration was not updated. No functional changes were detected.
[10/8/24, 11:24:26:726 EDT] 0000005b com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 11:24:27:138 EDT] 00000050 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-restapp-0.1.0.
[10/8/24, 11:24:27:139 EDT] 00000050 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-restapp-0.1.0 has been bound to default_host.
[10/8/24, 11:24:27:140 EDT] 00000050 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 11:24:27:153 EDT] 00000052 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-restapp-0.1.0
[10/8/24, 11:24:27:154 EDT] 00000052 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 11:24:27:188 EDT] 00000052 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0001I: Application cics-java-liberty-restapp-0.1.0 started in 0.559 seconds.
[10/8/24, 11:24:27:214 EDT] 00000050 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 11:24:28:326 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4000I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is starting.
[10/8/24, 11:24:28:330 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4#com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 11:24:28:335 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 11:24:28:336 EDT] 0000004f com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4!com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 11:24:28:336 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2#com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 11:24:28:337 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 11:24:28:338 EDT] 0000004f com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2!com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 11:24:28:338 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_c542c80f320a46708c62a3ed30359c87#com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 11:24:28:339 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 11:24:28:340 EDT] 0000004f com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_c542c80f320a46708c62a3ed30359c87!com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 11:24:28:340 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4001I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has started successfully.
[10/8/24, 11:24:28:352 EDT] 0000004f com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-link-app.
[10/8/24, 11:24:28:352 EDT] 0000004f com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-link-app has been bound to default_host.
[10/8/24, 11:24:28:353 EDT] 0000004f com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 11:24:28:399 EDT] 0000004f LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleAdded() - Building a CJSP transaction for this thread.   
[10/8/24, 11:24:28:412 EDT] 0000004f com.ibm.cics.server.Wrapper                                  I DFHSJ1405I: WebSphere Application Server Version 24.0.0.3 Liberty - (24.0.0.3-cl240320240311-1901)
[10/8/24, 11:24:28:495 EDT] 0000004f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 11:24:28:787 EDT] 00000052 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-link-1.0.0
[10/8/24, 11:24:28:788 EDT] 00000052 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 11:24:29:177 EDT] 00000052 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0001I: Application cics-java-liberty-link-1.0.0 started in 2.547 seconds.
[10/8/24, 11:24:29:277 EDT] 00000037 com.ibm.ws.tcpchannel.internal.TCPPort                       I CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host *  (IPv6) port 16019.
[10/8/24, 11:24:31:521 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0015I: The server has the following interim fixes active in the runtime: PH59781,PH59146,PH60149,PH60146. For a full listing of installed fixes run: productInfo version --ifixes
[10/8/24, 11:24:31:523 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0012I: The server installed the following features: [appSecurity-2.0, blueprint-1.0, cicsts:core-1.0, cicsts:defaultApp-1.0, cicsts:defaultJdbc-1.0, cicsts:link-1.0, cicsts:security-1.0, concurrent-1.0, distributedMap-1.0, ejbLite-3.1, el-3.0, jaxb-2.2, jca-1.6, jcaInboundSecurity-1.0, jdbc-4.2, jndi-1.0, jsp-2.3, mdb-3.1, servlet-3.1, ssl-1.0, wab-1.0, zosSecurity-1.0].
[10/8/24, 11:24:31:523 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0008I: Feature update completed in 15.180 seconds.
[10/8/24, 11:24:31:524 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0011I: The defaultServer server is ready to run a smarter planet. The defaultServer server started in 15.427 seconds.
[10/8/24, 13:28:49:140 EDT] 0000006d com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0016I: Starting server configuration update.
[10/8/24, 13:28:49:317 EDT] 0000006d com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 13:28:49:582 EDT] 0000006d com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 13:28:52:396 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0007I: Feature update started.
[10/8/24, 13:28:52:992 EDT] 00000075 om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7009I: The resource adapter com.ibm.cics.wlp.program.link.connector has uninstalled successfully.
[10/8/24, 13:28:53:045 EDT] 00000067 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:28:53:066 EDT] 00000060 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleRemoved() - Building a CJSP transaction for this thread.   
[10/8/24, 13:28:53:075 EDT] 00000060 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:28:53:094 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4003I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is stopping.
[10/8/24, 13:28:53:097 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4004I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has stopped successfully.
[10/8/24, 13:28:53:094 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-restapp-0.1.0 has stopped successfully.
[10/8/24, 13:28:53:118 EDT] 00000060 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-link-1.0.0 has stopped successfully.
[10/8/24, 13:28:53:191 EDT] 00000075 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:54:046 EDT] 00000078 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:28:54:138 EDT] 00000067 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:54:146 EDT] 0000006d com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0017I: The server configuration was successfully updated in 5.006 seconds.
[10/8/24, 13:28:54:185 EDT] 0000006f om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl I J2CA7018I: Installing resource adapter com.ibm.cics.wlp.program.link.connector.
[10/8/24, 13:28:54:285 EDT] 00000075 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 13:28:54:285 EDT] 00000075 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 13:28:54:286 EDT] 00000075 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:28:54:298 EDT] 00000067 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 13:28:54:298 EDT] 00000067 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:28:54:311 EDT] 00000067 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 13:28:54:385 EDT] 0000006f om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7001I: Resource adapter com.ibm.cics.wlp.program.link.connector installed in 0.199 seconds.
[10/8/24, 13:28:54:453 EDT] 0000006f com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:28:54:455 EDT] 00000060 com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-link-1.0.0.
[10/8/24, 13:28:54:465 EDT] 0000006d com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:54:840 EDT] 0000006f com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:28:54:840 EDT] 0000006f com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-restapp-0.1.0 has been bound to default_host.
[10/8/24, 13:28:54:841 EDT] 0000006f com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:28:54:851 EDT] 00000067 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-restapp-0.1.0
[10/8/24, 13:28:54:852 EDT] 00000067 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:28:54:854 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0015I: The server has the following interim fixes active in the runtime: PH59781,PH59682,PH59146,PH60149,PH60146. For a full listing of installed fixes run: productInfo version --ifixes
[10/8/24, 13:28:54:855 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF1037I: The server added the [jaxrs-1.1, json-1.0] features to the existing feature set.
[10/8/24, 13:28:54:856 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0012I: The server installed the following features: [appSecurity-2.0, blueprint-1.0, cicsts:core-1.0, cicsts:defaultApp-1.0, cicsts:defaultJdbc-1.0, cicsts:link-1.0, cicsts:security-1.0, concurrent-1.0, distributedMap-1.0, ejbLite-3.1, el-3.0, jaxb-2.2, jaxrs-1.1, jca-1.6, jcaInboundSecurity-1.0, jdbc-4.2, jndi-1.0, json-1.0, jsp-2.3, mdb-3.1, servlet-3.1, ssl-1.0, wab-1.0, zosSecurity-1.0].
[10/8/24, 13:28:54:857 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0008I: Feature update completed in 4.842 seconds.
[10/8/24, 13:28:54:890 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-restapp-0.1.0 updated in 0.437 seconds.
[10/8/24, 13:28:54:916 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:55:509 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4000I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is starting.
[10/8/24, 13:28:55:510 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_c542c80f320a46708c62a3ed30359c87#com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:28:55:510 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:28:55:511 EDT] 00000060 com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_c542c80f320a46708c62a3ed30359c87!com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:28:55:512 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4#com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:28:55:512 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:28:55:513 EDT] 00000060 com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4!com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:28:55:514 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2#com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:28:55:514 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:28:55:515 EDT] 00000060 com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2!com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:28:55:516 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4001I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has started successfully.
[10/8/24, 13:28:55:530 EDT] 00000060 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-link-app.
[10/8/24, 13:28:55:530 EDT] 00000060 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-link-app has been bound to default_host.
[10/8/24, 13:28:55:531 EDT] 00000060 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:28:55:576 EDT] 00000060 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleAdded() - Building a CJSP transaction for this thread.   
[10/8/24, 13:28:55:655 EDT] 00000060 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:55:984 EDT] 00000067 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-link-1.0.0
[10/8/24, 13:28:55:984 EDT] 00000067 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:28:56:330 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-link-1.0.0 updated in 1.874 seconds.
[10/8/24, 13:34:28:152 EDT] 0000006f com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0016I: Starting server configuration update.
[10/8/24, 13:34:28:167 EDT] 0000006f com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 13:34:28:193 EDT] 0000006f com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 13:34:28:576 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0007I: Feature update started.
[10/8/24, 13:34:28:969 EDT] 0000006f om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7009I: The resource adapter com.ibm.cics.wlp.program.link.connector has uninstalled successfully.
[10/8/24, 13:34:29:019 EDT] 00000082 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:34:29:060 EDT] 00000082 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-restapp-0.1.0 has stopped successfully.
[10/8/24, 13:34:29:200 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:31:401 EDT] 00000067 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleRemoved() - Building a CJSP transaction for this thread.   
[10/8/24, 13:34:31:408 EDT] 00000067 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:34:31:425 EDT] 00000067 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4003I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is stopping.
[10/8/24, 13:34:31:425 EDT] 00000067 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4004I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has stopped successfully.
[10/8/24, 13:34:31:446 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-link-1.0.0 has stopped successfully.
[10/8/24, 13:34:31:515 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:32:349 EDT] 00000073 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:32:431 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:32:669 EDT] 00000089 com.ibm.tx.jta.impl.FailureScopeController                   A WTRN0105I: The transaction service has shutdown successfully with no transactions requiring recovery.
[10/8/24, 13:34:32:703 EDT] 00000089 org.apache.aries.blueprint.container.BlueprintExtender       I Destroying BlueprintContainer for bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901
[10/8/24, 13:34:33:195 EDT] 00000089 ontainer.security.feature.internal.FeatureAuthorizationTable I CWWKS9120I: Authorization roles with id="com.ibm.cics.wlp.defaultapp" have been successfully processed.
[10/8/24, 13:34:33:340 EDT] 00000073 LogService-106-com.ibm.cics.wlp.jta                          I CWWKE0703I: [com.ibm.cics.wlp.jta.impl] [CICSJTAIntegration] @Info : activate() - CICS WLP JTA integration is ENABLED   
[10/8/24, 13:34:33:495 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=com.ibm.ws.LocalTransaction.LocalTransactionCurrent), (objectClass=javax.transaction.TransactionManager)]
[10/8/24, 13:34:33:527 EDT] 0000006f com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 13:34:33:531 EDT] 0000006f com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 13:34:33:531 EDT] 0000006f com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:33:536 EDT] 00000083 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:33:591 EDT] 00000082 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 13:34:33:594 EDT] 00000082 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:33:613 EDT] 00000067 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:33:617 EDT] 00000082 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 13:34:33:732 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:33:799 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=javax.transaction.TransactionManager)]
[10/8/24, 13:34:34:106 EDT] 0000006d com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 13:34:34:107 EDT] 0000006d com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 13:34:34:108 EDT] 0000006d com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:34:116 EDT] 00000073 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0010I: Performing recovery processing for local WebSphere server (defaultServer).
[10/8/24, 13:34:34:126 EDT] 00000082 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 13:34:34:126 EDT] 00000082 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:34:141 EDT] 00000082 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 13:34:34:194 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:34:250 EDT] 00000073 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0012I: All persistent services have been directed to perform recovery processing for this WebSphere server (defaultServer).
[10/8/24, 13:34:34:250 EDT] 0000008a com.ibm.tx.jta.impl.RecoveryManager                          I WTRN0135I: Transaction service recovering no transactions.
[10/8/24, 13:34:34:405 EDT] 00000060 com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0017I: The server configuration was successfully updated in 6.252 seconds.
[10/8/24, 13:34:34:444 EDT] 00000082 om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl I J2CA7018I: Installing resource adapter com.ibm.cics.wlp.program.link.connector.
[10/8/24, 13:34:34:467 EDT] 0000006d com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-link-1.0.0.
[10/8/24, 13:34:34:471 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:34:34:860 EDT] 00000067 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:34:34:860 EDT] 00000067 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-restapp-0.1.0 has been bound to default_host.
[10/8/24, 13:34:34:861 EDT] 00000067 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:34:34:871 EDT] 0000006f com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-restapp-0.1.0
[10/8/24, 13:34:34:871 EDT] 0000006f com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:34:905 EDT] 0000006f com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-restapp-0.1.0 updated in 0.434 seconds.
[10/8/24, 13:34:35:125 EDT] 00000082 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl.connector] [ECBListener] @Info : static initializer() - Liberty server is configured to bypass Java Subject creation on Link-to-Liberty operations   
[10/8/24, 13:34:35:125 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0015I: The server has the following interim fixes active in the runtime: PH59781,PH59146,PH60149,PH60146. For a full listing of installed fixes run: productInfo version --ifixes
[10/8/24, 13:34:35:127 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF1037I: The server added the [ejbLite-3.2, jaxrs-2.0, jaxrsClient-2.0, jca-1.7, mdb-3.2] features to the existing feature set.
[10/8/24, 13:34:35:128 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0012I: The server installed the following features: [appSecurity-2.0, blueprint-1.0, cicsts:core-1.0, cicsts:defaultApp-1.0, cicsts:defaultJdbc-1.0, cicsts:link-1.0, cicsts:security-1.0, concurrent-1.0, distributedMap-1.0, ejbLite-3.2, el-3.0, jaxb-2.2, jaxrs-2.0, jaxrsClient-2.0, jca-1.7, jcaInboundSecurity-1.0, jdbc-4.2, jndi-1.0, json-1.0, jsp-2.3, mdb-3.2, servlet-3.1, ssl-1.0, wab-1.0, zosSecurity-1.0].
[10/8/24, 13:34:35:128 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0013I: The server removed the following features: [ejbLite-3.1, jaxrs-1.1, jca-1.6, mdb-3.1].
[10/8/24, 13:34:35:129 EDT] 00000082 om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7001I: Resource adapter com.ibm.cics.wlp.program.link.connector installed in 0.684 seconds.
[10/8/24, 13:34:35:129 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0008I: Feature update completed in 6.903 seconds.
[10/8/24, 13:34:35:191 EDT] 00000067 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:35:688 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4000I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is starting.
[10/8/24, 13:34:35:692 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4#com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:34:35:697 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:34:35:698 EDT] 0000006d com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4!com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:34:35:698 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_c542c80f320a46708c62a3ed30359c87#com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:34:35:699 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:34:35:700 EDT] 0000006d com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_c542c80f320a46708c62a3ed30359c87!com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:34:35:700 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2#com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:34:35:701 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:34:35:701 EDT] 0000006d com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2!com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:34:35:702 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4001I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has started successfully.
[10/8/24, 13:34:35:715 EDT] 0000006d com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-link-app.
[10/8/24, 13:34:35:716 EDT] 0000006d com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-link-app has been bound to default_host.
[10/8/24, 13:34:35:716 EDT] 0000006d com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:34:35:805 EDT] 0000006d LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleAdded() - Building a CJSP transaction for this thread.   
[10/8/24, 13:34:35:877 EDT] 0000006d com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:36:152 EDT] 00000060 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-link-1.0.0
[10/8/24, 13:34:36:153 EDT] 00000060 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:36:487 EDT] 00000060 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-link-1.0.0 updated in 2.019 seconds.
[10/8/24, 13:38:46:613 EDT] 0000006d LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:38:46:714 EDT] 00000067 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:39:31:057 EDT] 0000006f LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:39:31:141 EDT] 00000082 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:40:01:470 EDT] 0000006f LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:40:01:571 EDT] 00000073 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:41:58:448 EDT] 00000073 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:41:58:452 EDT] 00000073 com.ibm.ws.webcontainer.extension                            W SRVE0190E: File not found: /rest/cicsinfo
[10/8/24, 14:41:58:467 EDT] 00000073 LogService-110-com.ibm.cics.wlp.impl                         E CWWKE0701E: [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() -  java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /rest/cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more

[10/8/24, 14:41:58:573 EDT] 0000009b SystemErr                                                    R 2024/10/08 14:41:58.461000 EDT DFHWLP E [DFHSJTHP.TASK95.CJSA:115] [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() - 
java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /rest/cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more
[10/8/24, 14:43:02:614 EDT] 00000073 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:43:02:721 EDT] 00000082 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:43:38:930 EDT] 00000082 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:43:38:934 EDT] 00000082 com.ibm.ws.webcontainer.extension                            W SRVE0190E: File not found: /cicsinfo
[10/8/24, 14:43:38:941 EDT] 00000082 LogService-110-com.ibm.cics.wlp.impl                         E CWWKE0701E: [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() -  java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more

[10/8/24, 14:43:38:946 EDT] 0000009f SystemErr                                                    R 2024/10/08 14:43:38.937000 EDT DFHWLP E [DFHSJTHP.TASK98.CJSA:130] [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() - 
java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more
netskink commented 1 week ago

Using the pull request for gradle.build and this url http://ca31.lvn.broadcom.net:16019/com.ibm.cicsdev.restapp/rest/cicsinfo

Here is my server log

********************************************************************************
product = CICS LIBERTY 5.6.0, WAS FOR Z/OS 24.0.0.3 (wlp-1.0.87.cl240320240311-1901)
wlp.install.dir = /C/CICS/CTS560/usr/lpp/cicsts/cicssys.cts56/wlp/
server.config.dir = /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/
java.home = /usr/lpp/java/J17.0_64
java.version = 17.0.10
java.runtime = IBM Semeru Runtime Certified Edition for z/OS (17.0.10+7)
os = z/OS (03.01.00; s390x) (en_US)
process = 50661515@USILCA31
Classpath = /usr/lpp/cicsts/cts56/lib/com.ibm.cics.common.jar:/usr/lpp/cicsts/cts56/lib/com.ibm.cics.jvmserver.spi.jar:/usr/lpp/cicsts/cts56/lib/dfjrouter.jar:/usr/lpp/cicsts/cts56/lib/com.ibm.cics.router.wlp.jar:/usr/lpp/cicsts/cts56/wlp/bin/tools/ws-server.jar:/usr/lpp/cicsts/cts56/wlp/lib/org.eclipse.osgi_3.18.600.jar:
Java Library path = /usr/lpp/java/J17.0_64/lib/default:/usr/lpp/java/J17.0_64/lib:/usr/lpp/java/J17.0_64/lib/default:/usr/lpp/cicsts/cts56/lib:/usr/lpp/java/J17.0_64/bin/j9vm:/usr/lpp/java/J17.0_64/lib:/usr/lpp/java/J17.0_64/lib/server:/usr/lpp/java/J17.0_64/lib/compressedrefs:/usr/lpp/java/J17.0_64/lib/j9vm:/z/jd895801/dlls/:/C/DB2/DB2D10/usr/lpp/db2d10/jdbc/lib
********************************************************************************
[10/8/24, 11:24:13:789 EDT] 0000001b com.ibm.ws.kernel.launch.internal.FrameworkManager           A CWWKE0001I: The server defaultServer has been launched.
[10/8/24, 11:24:13:838 EDT] 0000001b com.ibm.ws.kernel.launch.internal.FrameworkManager           I CWWKE0108I: The product extension cicsts was programmatically enabled. The product identifier of the product extension is cicsts. The product install location of the product extension is /usr/lpp/cicsts/cts56/etc/wlp/extensions/cicsts.
[10/8/24, 11:24:15:921 EDT] 0000002c LogService-11-com.ibm.ws.org.apache.felix.scr                I CWWKE0703I: bundle com.ibm.ws.org.apache.felix.scr:1.0.87.cl240320240311-1901 (11) Starting with globalExtender setting: true   
[10/8/24, 11:24:15:929 EDT] 0000002c LogService-11-com.ibm.ws.org.apache.felix.scr                I CWWKE0703I: bundle com.ibm.ws.org.apache.felix.scr:1.0.87.cl240320240311-1901 (11)  Version = 1.0.87.cl240320240311-1901   
[10/8/24, 11:24:15:998 EDT] 00000029 com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 11:24:16:041 EDT] 00000029 com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 11:24:16:091 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0125I: This server requested a REGION size of 0KB. The below-the-line storage limit is 7MB and the above-the-line storage limit is 1047MB.
[10/8/24, 11:24:16:094 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0126I: MEMLIMIT=ffffffff000. MEMLIMIT CONFIGURATION SOURCE=USI.
[10/8/24, 11:24:16:099 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0101I: The angel process is not available.  No authorized services will be loaded.  The reason code is 4.
[10/8/24, 11:24:16:140 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group KERNEL is not available.
[10/8/24, 11:24:16:141 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group LOCALCOM is not available.
[10/8/24, 11:24:16:142 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group PRODMGR is not available.
[10/8/24, 11:24:16:143 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group SAFCRED is not available.
[10/8/24, 11:24:16:144 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group TXRRS is not available.
[10/8/24, 11:24:16:145 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group WOLA is not available.
[10/8/24, 11:24:16:146 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group ZOSAIO is not available.
[10/8/24, 11:24:16:146 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group ZOSDUMP is not available.
[10/8/24, 11:24:16:147 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group ZOSWLM is not available.
[10/8/24, 11:24:16:148 EDT] 0000002c com.ibm.ws.zos.core.internal.NativeServiceTracker            I CWWKB0104I: Authorized service group CLIENT.WOLA is not available.
[10/8/24, 11:24:16:158 EDT] 0000002c com.ibm.ws.zos.registration.internal.ProductRegistrationImpl I CWWKB0108I: IBM CORP product CICS LIBERTY version 5.6.0 successfully registered with z/OS.
[10/8/24, 11:24:16:160 EDT] 0000002c com.ibm.ws.zos.registration.internal.ProductManager          I CWWKB0113I: The number of successfully registered products with z/OS is 1. These products will deregister from z/OS when the address space terminates.
[10/8/24, 11:24:16:165 EDT] 0000002c com.ibm.ws.zos.core.internal.CoreBundleActivator             I CWWKB0121I: The server process UMASK value is set to 0007.
[10/8/24, 11:24:16:349 EDT] 0000001b com.ibm.ws.kernel.launch.internal.FrameworkManager           I CWWKE0002I: The kernel started after 2.559 seconds
[10/8/24, 11:24:17:152 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0007I: Feature update started.
[10/8/24, 11:24:17:430 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            E CWWKF0042E: A feature definition cannot be found for the jaxrs-1.0 feature.  Try running the command, bin/installUtility install jaxrs-1.0, to install the feature. Alternatively, you can run the command, bin/installUtility install defaultServer, to install all features that are referenced by this configuration.
[10/8/24, 11:24:21:909 EDT] 00000028 LogService-102-com.ibm.cics.osgi.impl                        I CWWKE0703I: [com.ibm.cics.osgi.impl] [CICSMainClassServiceHandler] @Info : processHeader() - Registered 'CICS-MainClass' service for class name 'com.ibm.cics.server.internal.ThreadJoiner' with alias 'ThreadJoiner'.   
[10/8/24, 11:24:22:825 EDT] 00000028 com.ibm.ws.security.ready.internal.SecurityReadyServiceImpl  I CWWKS0007I: The security service is starting...
[10/8/24, 11:24:23:299 EDT] 0000002b com.ibm.ws.app.manager.internal.monitor.DropinMonitor        A CWWKZ0058I: Monitoring dropins for applications.
[10/8/24, 11:24:23:592 EDT] 00000029 com.ibm.ws.cache.ServerCache                                 I DYNA1001I: WebSphere Dynamic Cache instance named baseCache initialized successfully.
[10/8/24, 11:24:23:596 EDT] 00000029 com.ibm.ws.cache.ServerCache                                 I DYNA1071I: The cache provider default is being used.
[10/8/24, 11:24:23:597 EDT] 00000029 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 11:24:23:599 EDT] 0000002c ontainer.security.feature.internal.FeatureAuthorizationTable I CWWKS9120I: Authorization roles with id="com.ibm.cics.wlp.defaultapp" have been successfully processed.
[10/8/24, 11:24:23:772 EDT] 00000028 LogService-106-com.ibm.cics.wlp.jta                          I CWWKE0703I: [com.ibm.cics.wlp.jta.impl] [CICSJTAIntegration] @Info : activate() - CICS WLP JTA integration is ENABLED   
[10/8/24, 11:24:23:848 EDT] 00000031 com.ibm.ws.ssl.config.WSKeyStore                             I CWPKI0819I: The default keystore is not created because a password is not configured on the <keyStore id="defaultKeyStore"/> element, and the 'keystore_password' environment variable is not set. 
[10/8/24, 11:24:23:935 EDT] 00000028 com.ibm.ws.security.registry.saf.internal.SAFRegistry        I CWWKS2937I: Server initialization is in progress and SAF authorized services are currently unavailable. Look for a subsequent CWWKS2938I message on the availability of SAF authorized services. The server.xml file contains the safRegistry element with the enableFailover attribute set to false. This setting prevents failover to unauthorized UNIX System Services if SAF authorized services remain unavailable.
[10/8/24, 11:24:23:940 EDT] 00000052 com.ibm.ws.security.token.ltpa.internal.LTPAKeyCreateTask    I CWWKS4105I: LTPA configuration is ready after 0.066 seconds.
[10/8/24, 11:24:23:948 EDT] 00000028 ibm.ws.security.authentication.internal.jaas.JAASServiceImpl I CWWKS1123I: The collective authentication plugin with class name NullCollectiveAuthenticationPlugin has been activated. 
[10/8/24, 11:24:24:403 EDT] 00000028 com.ibm.ws.security.ready.internal.SecurityReadyServiceImpl  I CWWKS0008I: The security service is ready.
[10/8/24, 11:24:24:772 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=com.ibm.ws.LocalTransaction.LocalTransactionCurrent), (objectClass=javax.transaction.TransactionManager)]
[10/8/24, 11:24:24:806 EDT] 00000045 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.org.apache.aries.application.resolver.obr.1.0.1/1.1.87.cl240320240311-1901 is waiting for dependencies [(objectClass=org.apache.aries.application.management.spi.runtime.LocalPlatform)]
[10/8/24, 11:24:24:849 EDT] 00000028 gService-92-com.ibm.ws.org.apache.geronimo.osgi.registry.1.1 I CWWKE0703I: SPI-Provider Manifest header found in bundle: com.ibm.ws.xlxp.1.5.3   
[10/8/24, 11:24:25:116 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=javax.transaction.TransactionManager)]
[10/8/24, 11:24:25:199 EDT] 00000028 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0010I: Performing recovery processing for local WebSphere server (defaultServer).
[10/8/24, 11:24:25:421 EDT] 00000028 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0012I: All persistent services have been directed to perform recovery processing for this WebSphere server (defaultServer).
[10/8/24, 11:24:25:421 EDT] 00000059 com.ibm.tx.jta.impl.RecoveryManager                          I WTRN0135I: Transaction service recovering no transactions.
[10/8/24, 11:24:25:726 EDT] 0000004d om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl I J2CA7018I: Installing resource adapter com.ibm.cics.wlp.program.link.connector.
[10/8/24, 11:24:25:856 EDT] 0000004d com.ibm.ws.session.WASSessionCore                            I SESN8501I: The session manager did not find a persistent storage location; HttpSession objects will be stored in the local application server's memory.
[10/8/24, 11:24:26:025 EDT] 00000050 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 11:24:26:027 EDT] 00000050 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 11:24:26:029 EDT] 00000050 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 11:24:26:111 EDT] 0000004f com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 11:24:26:117 EDT] 0000004f com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 11:24:26:139 EDT] 0000004f com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 11:24:26:547 EDT] 0000004d LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl.connector] [ECBListener] @Info : static initializer() - Liberty server is configured to bypass Java Subject creation on Link-to-Liberty operations   
[10/8/24, 11:24:26:551 EDT] 0000004d om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7001I: Resource adapter com.ibm.cics.wlp.program.link.connector installed in 0.824 seconds.
[10/8/24, 11:24:26:628 EDT] 00000050 com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-restapp-0.1.0.
[10/8/24, 11:24:26:630 EDT] 0000004f com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-link-1.0.0.
[10/8/24, 11:24:26:642 EDT] 00000055 com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0016I: Starting server configuration update.
[10/8/24, 11:24:26:649 EDT] 00000050 bm.ws.app.manager.war.internal.WARDeployedAppInfoFactoryImpl I CWWKZ0133I: The cics-java-liberty-restapp-0.1.0 application at the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/dropins/cics-java-liberty-restapp-0.1.0.war location is being expanded to the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/apps/expanded/cics-java-liberty-restapp-0.1.0.war directory.
[10/8/24, 11:24:26:651 EDT] 0000004f bm.ws.app.manager.war.internal.WARDeployedAppInfoFactoryImpl I CWWKZ0133I: The cics-java-liberty-link-1.0.0 application at the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/dropins/cics-java-liberty-link-1.0.0.war location is being expanded to the /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/apps/expanded/cics-java-liberty-link-1.0.0.war directory.
[10/8/24, 11:24:26:657 EDT] 00000055 com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 11:24:26:681 EDT] 00000055 com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 11:24:26:714 EDT] 00000055 com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0018I: The server configuration was not updated. No functional changes were detected.
[10/8/24, 11:24:26:726 EDT] 0000005b com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 11:24:27:138 EDT] 00000050 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-restapp-0.1.0.
[10/8/24, 11:24:27:139 EDT] 00000050 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-restapp-0.1.0 has been bound to default_host.
[10/8/24, 11:24:27:140 EDT] 00000050 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 11:24:27:153 EDT] 00000052 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-restapp-0.1.0
[10/8/24, 11:24:27:154 EDT] 00000052 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 11:24:27:188 EDT] 00000052 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0001I: Application cics-java-liberty-restapp-0.1.0 started in 0.559 seconds.
[10/8/24, 11:24:27:214 EDT] 00000050 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 11:24:28:326 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4000I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is starting.
[10/8/24, 11:24:28:330 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4#com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 11:24:28:335 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 11:24:28:336 EDT] 0000004f com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4!com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 11:24:28:336 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2#com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 11:24:28:337 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 11:24:28:338 EDT] 0000004f com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2!com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 11:24:28:338 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_c542c80f320a46708c62a3ed30359c87#com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 11:24:28:339 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 11:24:28:340 EDT] 0000004f com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_c542c80f320a46708c62a3ed30359c87!com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 11:24:28:340 EDT] 0000004f com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4001I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has started successfully.
[10/8/24, 11:24:28:352 EDT] 0000004f com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-link-app.
[10/8/24, 11:24:28:352 EDT] 0000004f com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-link-app has been bound to default_host.
[10/8/24, 11:24:28:353 EDT] 0000004f com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 11:24:28:399 EDT] 0000004f LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleAdded() - Building a CJSP transaction for this thread.   
[10/8/24, 11:24:28:412 EDT] 0000004f com.ibm.cics.server.Wrapper                                  I DFHSJ1405I: WebSphere Application Server Version 24.0.0.3 Liberty - (24.0.0.3-cl240320240311-1901)
[10/8/24, 11:24:28:495 EDT] 0000004f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 11:24:28:787 EDT] 00000052 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-link-1.0.0
[10/8/24, 11:24:28:788 EDT] 00000052 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 11:24:29:177 EDT] 00000052 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0001I: Application cics-java-liberty-link-1.0.0 started in 2.547 seconds.
[10/8/24, 11:24:29:277 EDT] 00000037 com.ibm.ws.tcpchannel.internal.TCPPort                       I CWWKO0219I: TCP Channel defaultHttpEndpoint has been started and is now listening for requests on host *  (IPv6) port 16019.
[10/8/24, 11:24:31:521 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0015I: The server has the following interim fixes active in the runtime: PH59781,PH59146,PH60149,PH60146. For a full listing of installed fixes run: productInfo version --ifixes
[10/8/24, 11:24:31:523 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0012I: The server installed the following features: [appSecurity-2.0, blueprint-1.0, cicsts:core-1.0, cicsts:defaultApp-1.0, cicsts:defaultJdbc-1.0, cicsts:link-1.0, cicsts:security-1.0, concurrent-1.0, distributedMap-1.0, ejbLite-3.1, el-3.0, jaxb-2.2, jca-1.6, jcaInboundSecurity-1.0, jdbc-4.2, jndi-1.0, jsp-2.3, mdb-3.1, servlet-3.1, ssl-1.0, wab-1.0, zosSecurity-1.0].
[10/8/24, 11:24:31:523 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0008I: Feature update completed in 15.180 seconds.
[10/8/24, 11:24:31:524 EDT] 00000037 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0011I: The defaultServer server is ready to run a smarter planet. The defaultServer server started in 15.427 seconds.
[10/8/24, 13:28:49:140 EDT] 0000006d com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0016I: Starting server configuration update.
[10/8/24, 13:28:49:317 EDT] 0000006d com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 13:28:49:582 EDT] 0000006d com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 13:28:52:396 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0007I: Feature update started.
[10/8/24, 13:28:52:992 EDT] 00000075 om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7009I: The resource adapter com.ibm.cics.wlp.program.link.connector has uninstalled successfully.
[10/8/24, 13:28:53:045 EDT] 00000067 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:28:53:066 EDT] 00000060 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleRemoved() - Building a CJSP transaction for this thread.   
[10/8/24, 13:28:53:075 EDT] 00000060 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:28:53:094 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4003I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is stopping.
[10/8/24, 13:28:53:097 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4004I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has stopped successfully.
[10/8/24, 13:28:53:094 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-restapp-0.1.0 has stopped successfully.
[10/8/24, 13:28:53:118 EDT] 00000060 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-link-1.0.0 has stopped successfully.
[10/8/24, 13:28:53:191 EDT] 00000075 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:54:046 EDT] 00000078 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:28:54:138 EDT] 00000067 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:54:146 EDT] 0000006d com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0017I: The server configuration was successfully updated in 5.006 seconds.
[10/8/24, 13:28:54:185 EDT] 0000006f om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl I J2CA7018I: Installing resource adapter com.ibm.cics.wlp.program.link.connector.
[10/8/24, 13:28:54:285 EDT] 00000075 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 13:28:54:285 EDT] 00000075 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 13:28:54:286 EDT] 00000075 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:28:54:298 EDT] 00000067 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 13:28:54:298 EDT] 00000067 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:28:54:311 EDT] 00000067 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 13:28:54:385 EDT] 0000006f om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7001I: Resource adapter com.ibm.cics.wlp.program.link.connector installed in 0.199 seconds.
[10/8/24, 13:28:54:453 EDT] 0000006f com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:28:54:455 EDT] 00000060 com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-link-1.0.0.
[10/8/24, 13:28:54:465 EDT] 0000006d com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:54:840 EDT] 0000006f com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:28:54:840 EDT] 0000006f com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-restapp-0.1.0 has been bound to default_host.
[10/8/24, 13:28:54:841 EDT] 0000006f com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:28:54:851 EDT] 00000067 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-restapp-0.1.0
[10/8/24, 13:28:54:852 EDT] 00000067 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:28:54:854 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0015I: The server has the following interim fixes active in the runtime: PH59781,PH59682,PH59146,PH60149,PH60146. For a full listing of installed fixes run: productInfo version --ifixes
[10/8/24, 13:28:54:855 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF1037I: The server added the [jaxrs-1.1, json-1.0] features to the existing feature set.
[10/8/24, 13:28:54:856 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0012I: The server installed the following features: [appSecurity-2.0, blueprint-1.0, cicsts:core-1.0, cicsts:defaultApp-1.0, cicsts:defaultJdbc-1.0, cicsts:link-1.0, cicsts:security-1.0, concurrent-1.0, distributedMap-1.0, ejbLite-3.1, el-3.0, jaxb-2.2, jaxrs-1.1, jca-1.6, jcaInboundSecurity-1.0, jdbc-4.2, jndi-1.0, json-1.0, jsp-2.3, mdb-3.1, servlet-3.1, ssl-1.0, wab-1.0, zosSecurity-1.0].
[10/8/24, 13:28:54:857 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0008I: Feature update completed in 4.842 seconds.
[10/8/24, 13:28:54:890 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-restapp-0.1.0 updated in 0.437 seconds.
[10/8/24, 13:28:54:916 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:55:509 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4000I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is starting.
[10/8/24, 13:28:55:510 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_c542c80f320a46708c62a3ed30359c87#com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:28:55:510 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:28:55:511 EDT] 00000060 com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_c542c80f320a46708c62a3ed30359c87!com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:28:55:512 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4#com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:28:55:512 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:28:55:513 EDT] 00000060 com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4!com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:28:55:514 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2#com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:28:55:514 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:28:55:515 EDT] 00000060 com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2!com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:28:55:516 EDT] 00000060 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4001I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has started successfully.
[10/8/24, 13:28:55:530 EDT] 00000060 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-link-app.
[10/8/24, 13:28:55:530 EDT] 00000060 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-link-app has been bound to default_host.
[10/8/24, 13:28:55:531 EDT] 00000060 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:28:55:576 EDT] 00000060 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleAdded() - Building a CJSP transaction for this thread.   
[10/8/24, 13:28:55:655 EDT] 00000060 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:28:55:984 EDT] 00000067 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-link-1.0.0
[10/8/24, 13:28:55:984 EDT] 00000067 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:28:56:330 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-link-1.0.0 updated in 1.874 seconds.
[10/8/24, 13:34:28:152 EDT] 0000006f com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0016I: Starting server configuration update.
[10/8/24, 13:34:28:167 EDT] 0000006f com.ibm.ws.config.xml.internal.ServerXMLConfiguration        A CWWKG0093A: Processing configuration drop-ins resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/configDropins/defaults/cicstsDefaultJdbc.xml
[10/8/24, 13:34:28:193 EDT] 0000006f com.ibm.ws.config.xml.internal.XMLConfigParser               A CWWKG0028A: Processing included configuration resource: /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/installedApps.xml
[10/8/24, 13:34:28:576 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            I CWWKF0007I: Feature update started.
[10/8/24, 13:34:28:969 EDT] 0000006f om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7009I: The resource adapter com.ibm.cics.wlp.program.link.connector has uninstalled successfully.
[10/8/24, 13:34:29:019 EDT] 00000082 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:34:29:060 EDT] 00000082 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-restapp-0.1.0 has stopped successfully.
[10/8/24, 13:34:29:200 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:31:401 EDT] 00000067 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleRemoved() - Building a CJSP transaction for this thread.   
[10/8/24, 13:34:31:408 EDT] 00000067 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:34:31:425 EDT] 00000067 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4003I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is stopping.
[10/8/24, 13:34:31:425 EDT] 00000067 com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4004I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has stopped successfully.
[10/8/24, 13:34:31:446 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0009I: The application cics-java-liberty-link-1.0.0 has stopped successfully.
[10/8/24, 13:34:31:515 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:32:349 EDT] 00000073 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:32:431 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:32:669 EDT] 00000089 com.ibm.tx.jta.impl.FailureScopeController                   A WTRN0105I: The transaction service has shutdown successfully with no transactions requiring recovery.
[10/8/24, 13:34:32:703 EDT] 00000089 org.apache.aries.blueprint.container.BlueprintExtender       I Destroying BlueprintContainer for bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901
[10/8/24, 13:34:33:195 EDT] 00000089 ontainer.security.feature.internal.FeatureAuthorizationTable I CWWKS9120I: Authorization roles with id="com.ibm.cics.wlp.defaultapp" have been successfully processed.
[10/8/24, 13:34:33:340 EDT] 00000073 LogService-106-com.ibm.cics.wlp.jta                          I CWWKE0703I: [com.ibm.cics.wlp.jta.impl] [CICSJTAIntegration] @Info : activate() - CICS WLP JTA integration is ENABLED   
[10/8/24, 13:34:33:495 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=com.ibm.ws.LocalTransaction.LocalTransactionCurrent), (objectClass=javax.transaction.TransactionManager)]
[10/8/24, 13:34:33:527 EDT] 0000006f com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 13:34:33:531 EDT] 0000006f com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 13:34:33:531 EDT] 0000006f com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:33:536 EDT] 00000083 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0017I: Web application removed (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:33:591 EDT] 00000082 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 13:34:33:594 EDT] 00000082 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:33:613 EDT] 00000067 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:33:617 EDT] 00000082 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 13:34:33:732 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:33:799 EDT] 00000044 org.apache.aries.blueprint.container.BlueprintContainerImpl  I Bundle com.ibm.ws.eba.tx.7.0/1.0.87.cl240320240311-1901 is waiting for dependencies [(objectClass=javax.transaction.TransactionManager)]
[10/8/24, 13:34:34:106 EDT] 0000006d com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: com.ibm.cics.wlp.defaultapp.
[10/8/24, 13:34:34:107 EDT] 0000006d com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module com.ibm.cics.wlp.defaultapp has been bound to default_host.
[10/8/24, 13:34:34:108 EDT] 0000006d com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/com.ibm.cics.wlp.defaultapp/
[10/8/24, 13:34:34:116 EDT] 00000073 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0010I: Performing recovery processing for local WebSphere server (defaultServer).
[10/8/24, 13:34:34:126 EDT] 00000082 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/com.ibm.cics.wlp.defaultapp
[10/8/24, 13:34:34:126 EDT] 00000082 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:34:141 EDT] 00000082 com.ibm.ws.cache.CacheServiceImpl                            I DYNA1056I: Dynamic Cache (object cache) initialized successfully.
[10/8/24, 13:34:34:194 EDT] 0000006f com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:34:250 EDT] 00000073 com.ibm.ws.recoverylog.spi.RecoveryDirectorImpl              I CWRLS0012I: All persistent services have been directed to perform recovery processing for this WebSphere server (defaultServer).
[10/8/24, 13:34:34:250 EDT] 0000008a com.ibm.tx.jta.impl.RecoveryManager                          I WTRN0135I: Transaction service recovering no transactions.
[10/8/24, 13:34:34:405 EDT] 00000060 com.ibm.ws.config.xml.internal.ConfigRefresher               A CWWKG0017I: The server configuration was successfully updated in 6.252 seconds.
[10/8/24, 13:34:34:444 EDT] 00000082 om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl I J2CA7018I: Installing resource adapter com.ibm.cics.wlp.program.link.connector.
[10/8/24, 13:34:34:467 EDT] 0000006d com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-link-1.0.0.
[10/8/24, 13:34:34:471 EDT] 00000067 com.ibm.ws.app.manager.AppMessageHelper                      I CWWKZ0018I: Starting application cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:34:34:860 EDT] 00000067 com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-restapp-0.1.0.
[10/8/24, 13:34:34:860 EDT] 00000067 com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-restapp-0.1.0 has been bound to default_host.
[10/8/24, 13:34:34:861 EDT] 00000067 com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-restapp-0.1.0/
[10/8/24, 13:34:34:871 EDT] 0000006f com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-restapp-0.1.0
[10/8/24, 13:34:34:871 EDT] 0000006f com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:34:905 EDT] 0000006f com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-restapp-0.1.0 updated in 0.434 seconds.
[10/8/24, 13:34:35:125 EDT] 00000082 LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl.connector] [ECBListener] @Info : static initializer() - Liberty server is configured to bypass Java Subject creation on Link-to-Liberty operations   
[10/8/24, 13:34:35:125 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0015I: The server has the following interim fixes active in the runtime: PH59781,PH59146,PH60149,PH60146. For a full listing of installed fixes run: productInfo version --ifixes
[10/8/24, 13:34:35:127 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF1037I: The server added the [ejbLite-3.2, jaxrs-2.0, jaxrsClient-2.0, jca-1.7, mdb-3.2] features to the existing feature set.
[10/8/24, 13:34:35:128 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0012I: The server installed the following features: [appSecurity-2.0, blueprint-1.0, cicsts:core-1.0, cicsts:defaultApp-1.0, cicsts:defaultJdbc-1.0, cicsts:link-1.0, cicsts:security-1.0, concurrent-1.0, distributedMap-1.0, ejbLite-3.2, el-3.0, jaxb-2.2, jaxrs-2.0, jaxrsClient-2.0, jca-1.7, jcaInboundSecurity-1.0, jdbc-4.2, jndi-1.0, json-1.0, jsp-2.3, mdb-3.2, servlet-3.1, ssl-1.0, wab-1.0, zosSecurity-1.0].
[10/8/24, 13:34:35:128 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0013I: The server removed the following features: [ejbLite-3.1, jaxrs-1.1, jca-1.6, mdb-3.1].
[10/8/24, 13:34:35:129 EDT] 00000082 om.ibm.ws.app.manager.rar.internal.RARApplicationHandlerImpl A J2CA7001I: Resource adapter com.ibm.cics.wlp.program.link.connector installed in 0.684 seconds.
[10/8/24, 13:34:35:129 EDT] 00000073 com.ibm.ws.kernel.feature.internal.FeatureManager            A CWWKF0008I: Feature update completed in 6.903 seconds.
[10/8/24, 13:34:35:191 EDT] 00000067 com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:35:688 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4000I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application is starting.
[10/8/24, 13:34:35:692 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4#com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:34:35:697 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:34:35:698 EDT] 0000006d com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 interface of the LinkBean_5fa1731b11204699b67f0e1ef2aea0d4 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_5fa1731b11204699b67f0e1ef2aea0d4!com.ibm.cics.server.invocation.proxy.LinkBean_5fa1731b11204699b67f0e1ef2aea0d4
[10/8/24, 13:34:35:698 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_c542c80f320a46708c62a3ed30359c87#com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:34:35:699 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:34:35:700 EDT] 0000006d com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87 interface of the LinkBean_c542c80f320a46708c62a3ed30359c87 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_c542c80f320a46708c62a3ed30359c87!com.ibm.cics.server.invocation.proxy.LinkBean_c542c80f320a46708c62a3ed30359c87
[10/8/24, 13:34:35:700 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:cics-java-liberty-link-1.0.0/cics-java-liberty-link-1.0.0.war/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2#com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:34:35:701 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.NameSpaceBinderImpl    I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: ejblocal:com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:34:35:701 EDT] 0000006d com.ibm.ws.ejbcontainer.runtime.AbstractEJBRuntime           I CNTR0167I: The server is binding the com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 interface of the LinkBean_ff637fdb15d44c8e852d3a1e55210ec2 enterprise bean in the cics-java-liberty-link-1.0.0.war module of the cics-java-liberty-link-1.0.0 application.  The binding location is: java:global/cics-java-liberty-link-1.0.0/LinkBean_ff637fdb15d44c8e852d3a1e55210ec2!com.ibm.cics.server.invocation.proxy.LinkBean_ff637fdb15d44c8e852d3a1e55210ec2
[10/8/24, 13:34:35:702 EDT] 0000006d com.ibm.ws.ejbcontainer.osgi.internal.EJBRuntimeImpl         I CNTR4001I: The cics-java-liberty-link-1.0.0.war EJB module in the cics-java-liberty-link-1.0.0 application has started successfully.
[10/8/24, 13:34:35:715 EDT] 0000006d com.ibm.ws.webcontainer.osgi.webapp.WebGroup                 I SRVE0169I: Loading Web Module: cics-java-liberty-link-app.
[10/8/24, 13:34:35:716 EDT] 0000006d com.ibm.ws.webcontainer                                      I SRVE0250I: Web Module cics-java-liberty-link-app has been bound to default_host.
[10/8/24, 13:34:35:716 EDT] 0000006d com.ibm.ws.http.internal.VirtualHostImpl                     A CWWKT0016I: Web application available (default_host): http://10.175.79.129:16019/cics-java-liberty-link-1.0.0/
[10/8/24, 13:34:35:805 EDT] 0000006d LogService-158-com.ibm.cics.wlp.link.impl                    I CWWKE0703I: [com.ibm.cics.wlp.link.impl] [LinkableServicesManagerImpl] @Info : moduleAdded() - Building a CJSP transaction for this thread.   
[10/8/24, 13:34:35:877 EDT] 0000006d com.ibm.ws.webcontainer.osgi.mbeans.PluginGenerator          I SRVE9103I: A configuration file for a web server plugin was automatically generated for this server at /z/jd895801/U31CIHBH/DFHWLP/wlp/usr/servers/defaultServer/logs/state/plugin-cfg.xml.
[10/8/24, 13:34:36:152 EDT] 00000060 com.ibm.ws.session.WASSessionCore                            I SESN0176I: A new session context will be created for application key default_host/cics-java-liberty-link-1.0.0
[10/8/24, 13:34:36:153 EDT] 00000060 com.ibm.ws.util                                              I SESN0172I: The session manager is using the Java default SecureRandom implementation for session ID generation.
[10/8/24, 13:34:36:487 EDT] 00000060 com.ibm.ws.app.manager.AppMessageHelper                      A CWWKZ0003I: The application cics-java-liberty-link-1.0.0 updated in 2.019 seconds.
[10/8/24, 13:38:46:613 EDT] 0000006d LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:38:46:714 EDT] 00000067 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:39:31:057 EDT] 0000006f LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:39:31:141 EDT] 00000082 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:40:01:470 EDT] 0000006f LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 13:40:01:571 EDT] 00000073 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:41:58:448 EDT] 00000073 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:41:58:452 EDT] 00000073 com.ibm.ws.webcontainer.extension                            W SRVE0190E: File not found: /rest/cicsinfo
[10/8/24, 14:41:58:467 EDT] 00000073 LogService-110-com.ibm.cics.wlp.impl                         E CWWKE0701E: [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() -  java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /rest/cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more

[10/8/24, 14:41:58:573 EDT] 0000009b SystemErr                                                    R 2024/10/08 14:41:58.461000 EDT DFHWLP E [DFHSJTHP.TASK95.CJSA:115] [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() - 
java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /rest/cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more
[10/8/24, 14:43:02:614 EDT] 00000073 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:43:02:721 EDT] 00000082 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:43:38:930 EDT] 00000082 LogService-201-com.ibm.cics.wlp.security.zos                 W CWWKE0700W: [com.ibm.cics.wlp.security.zos] [CICSThreadIdentityServiceImpl] @Warning: set() - SJJS SWITCH_PTHREAD_CONTEXT, user ID '        ' does not exist in SAF - CICS transaction will run under the CICS DEFAULT user ID.   
[10/8/24, 14:43:38:934 EDT] 00000082 com.ibm.ws.webcontainer.extension                            W SRVE0190E: File not found: /cicsinfo
[10/8/24, 14:43:38:941 EDT] 00000082 LogService-110-com.ibm.cics.wlp.impl                         E CWWKE0701E: [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() -  java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more

[10/8/24, 14:43:38:946 EDT] 0000009f SystemErr                                                    R 2024/10/08 14:43:38.937000 EDT DFHWLP E [DFHSJTHP.TASK98.CJSA:130] [com.ibm.cics.wlp.impl] [CICSTaskWrapper] @Error: handleThrowableErrors() - 
java.lang.RuntimeException: AJ05
    at com.ibm.cics.server.Wrapper.handleReturnCode(Wrapper.java:1298)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.handleThrowableErrors(CICSTaskWrapper.java:1061)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:467)
    at com.ibm.ws.threading.internal.ExecutorServiceImpl$RunnableWrapper.run(ExecutorServiceImpl.java:280)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at com.ibm.cics.wlp.threading.CICSThread.run(CICSThread.java:269)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThreadInternal(CICSPooledThreadFactory.java:426)
    at com.ibm.cics.wlp.threading.CICSPooledThreadFactory.joinAsThread(CICSPooledThreadFactory.java:352)
    at com.ibm.cics.server.internal.ThreadJoiner.main(ThreadJoiner.java:109)
    at jdk.internal.reflect.GeneratedMethodAccessor20.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.server.Wrapper.call_main(Wrapper.java:950)
    at com.ibm.cics.server.Wrapper.callOSGiClass(Wrapper.java:2915)
    at com.ibm.cics.server.Wrapper.invokeJvmServerOSGiClass(Wrapper.java:2781)
    at com.ibm.cics.server.Wrapper.jvmServerOSGiEntry(Wrapper.java:2710)
    at com.ibm.cics.osgi.bundlepart.impl.CICSOSGiBundlepartControllerImpl.runService(CICSOSGiBundlepartControllerImpl.java:1284)
    at com.ibm.cics.wlp.bundlepart.impl.CICSLibertyBundlepartControllerImpl.runService(CICSLibertyBundlepartControllerImpl.java:1136)
    at com.ibm.cics.osgi.impl.Controller.runService(Controller.java:787)
    at com.ibm.cics.osgi.impl.Controller.acceptRequest(Controller.java:282)
    at jdk.internal.reflect.GeneratedMethodAccessor19.invoke(Unknown Source)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:574)
    at com.ibm.cics.router.Router.route(Router.java:1421)
Caused by: java.io.FileNotFoundException: SRVE0190E: File not found: /cicsinfo
    at com.ibm.ws.webcontainer.extension.DefaultExtensionProcessor.handleRequest(DefaultExtensionProcessor.java:496)
    at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1361)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:5095)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.handleRequest(DynamicVirtualHost.java:328)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1038)
    at com.ibm.ws.webcontainer.osgi.DynamicVirtualHost$2.run(DynamicVirtualHost.java:293)
    at com.ibm.ws.http.dispatcher.internal.channel.HttpDispatcherLink$TaskWrapper.run(HttpDispatcherLink.java:1260)
    at com.ibm.cics.wlp.impl.CICSHttpRunnable.run(CICSHttpRunnable.java:250)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.runWork(CICSTaskWrapper.java:909)
    at com.ibm.cics.wlp.impl.CICSTaskWrapper.run(CICSTaskWrapper.java:460)
    ... 22 more